2000-05-05 Andreas Jaeger <aj@suse.de>

* misc/tst-tsearch.c (main): Correct type for initstate argument.
2000-05-05  Andreas Jaeger  <aj@suse.de>

	* misc/tst-tsearch.c (main): Correct type for initstate argument.
This commit is contained in:
Andreas Jaeger 2000-05-05 15:29:58 +00:00
parent c77ec56d0c
commit 621d9092d7
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-05-05 Andreas Jaeger <aj@suse.de>
* misc/tst-tsearch.c (main): Correct type for initstate argument.
2000-05-05 Ulrich Drepper <drepper@redhat.com>
* elf/Makefile (distribute): Add dl-lookupcfg.h.

View File

@ -1,5 +1,5 @@
/* Test program for tsearch et al.
Copyright (C) 1997 Free Software Foundation, Inc.
Copyright (C) 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -244,7 +244,7 @@ int
main (int argc, char **argv)
{
int total_error = 0;
static int state[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
static char state[8] = { 1, 2, 3, 4, 5, 6, 7, 8 };
void *root = NULL;
int i, j;