2003-03-08  Ulrich Drepper  <drepper@redhat.com>

	* rt/tst-aio7.c (do_test): Change BYTES into a #define.
This commit is contained in:
Ulrich Drepper 2003-03-08 18:56:15 +00:00
parent ccf1d5737a
commit 05ae97d81d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-03-08 Ulrich Drepper <drepper@redhat.com>
* rt/tst-aio7.c (do_test): Change BYTES into a #define.
2003-03-07 Ulrich Drepper <drepper@redhat.com>
* rt/tst-aio7.c (do_test): Give buff permanent extend, too.

View File

@ -117,7 +117,8 @@ do_test (void)
/* Test for aio_suspend() suspending even if completed elements in list. */
{
const int BYTES = 8, ELEMS = 2;
#define BYTES 8
const int ELEMS = 2;
int i, r, fd;
static char buff[BYTES];
char name[] = "/tmp/aio7.XXXXXX";