Fixed a howler with pluralism --- impossible to internationalise
[pspp] / src / algorithm.c
index 66be93d6b01a0c673ccec491164e53233df6cdb7..ba4413da749f743070a0cddd21a16af32d6fcf3e 100644 (file)
@@ -346,7 +346,7 @@ binary_search (const void *array, size_t count, size_t size,
       int low = 0;
       int high = count - 1;
 
-      while (low < high) 
+      while (low <= high) 
         {
           int middle = (low + high) / 2;
           const unsigned char *element = first + middle * size;