Skip to content

Commit d6a25b6

Browse files
committed
testdir38: try 3.
1 parent b3bde4b commit d6a25b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testdir38/gllib/qsort.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ _quicksort (void *const pbase, size_t total_elems, size_t size,
229229

230230
/* Insertion sort, running from left-hand-side up to right-hand-side. */
231231

232-
run_ptr = base_ptr + size;
232+
char *run_ptr = base_ptr + size;
233233
while ((run_ptr += size) <= end_ptr)
234234
{
235235
tmp_ptr = run_ptr - size;

0 commit comments

Comments
 (0)