pivot-table: Fix type mismatch in equal_indexes().
[pspp] / src / output / pivot-table.c
index 0b4f0fb4bab85cb0a58348e86058dc6dee71ec35..c024f142ee8917637e98ef53013b8222902d1e6e 100644 (file)
@@ -810,7 +810,7 @@ pivot_cell_hash_indexes (const size_t *indexes, size_t n_idx)
 }
 
 static bool
-equal_indexes (const size_t *a, const size_t *b, size_t n)
+equal_indexes (const size_t *a, const unsigned int *b, size_t n)
 {
   for (size_t i = 0; i < n; i++)
     if (a[i] != b[i])