svn path=/trunk/mono/; revision=64359
@@ -28,7 +28,7 @@ combine_digits (digit *digits, int max_digit, GCompareFunc func)
int i;
digit list = digits [0];
for (i = 1; i <= max_digit; ++i)
- list = add_digits (digit [i], list, func);
+ list = add_digits (digits [i], list, func);
return list;
}
@@ -306,7 +306,7 @@ test_list_insert_before ()
return OK;
-#define N_ELEMS 100
+#define N_ELEMS 101
static int intcompare (gconstpointer p1, gconstpointer p2)
{