Browse Source

- Fix arguments to compare function. Closes #1081

Bernhard Reutner-Fischer 16 năm trước cách đây
mục cha
commit
f73791df3a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      libc/misc/search/_lsearch.c

+ 1 - 1
libc/misc/search/_lsearch.c

@@ -22,7 +22,7 @@ void *lfind(const void *key, const void *base, size_t *nmemb,
 	register int n = *nmemb;
 
 	while (n--) {
-		if ((*compar) (base, key) == 0)
+		if ((*compar) (key, base) == 0)
 			return ((void*)base);
 		base += size;
 	}