diff src/DLD-FUNCTIONS/colloc.cc @ 5275:23b37da9fd5b

[project @ 2005-04-08 16:07:35 by jwe]
author jwe
date Fri, 08 Apr 2005 16:07:37 +0000
parents b80bbb43a1a9
children 4c8a2e4e0717
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/colloc.cc	Thu Apr 07 21:51:37 2005 +0000
+++ b/src/DLD-FUNCTIONS/colloc.cc	Fri Apr 08 16:07:37 2005 +0000
@@ -70,16 +70,16 @@
       return retval;
     }
 
-  int ncol = NINT (tmp);
+  octave_idx_type ncol = NINTbig (tmp);
   if (ncol < 0)
     {
       error ("colloc: first argument must be non-negative");
       return retval;
     }
 
-  int ntot = ncol;
-  int left = 0;
-  int right = 0;
+  octave_idx_type ntot = ncol;
+  octave_idx_type left = 0;
+  octave_idx_type right = 0;
 
   for (int i = 1; i < nargin; i++)
     {