Browse Source

Fix a typo. Cover one more possibility.

svn path=/trunk/mono/; revision=64359
Raja R Harinath 19 years ago
parent
commit
0879c6536e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      eglib/src/sort.frag.h
  2. 1 1
      eglib/test/list.c

+ 1 - 1
eglib/src/sort.frag.h

@@ -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;
 }
 

+ 1 - 1
eglib/test/list.c

@@ -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)
 {