diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-08 18:56:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-08 18:56:15 +0000 |
commit | 05ae97d81d4a185f0c4e09a4146072a283391b4d (patch) | |
tree | 103f173417debaa458c81163403b432774df9f58 /rt/tst-aio7.c | |
parent | ccf1d5737a2241f2521eb3af2bbf0c118dce828d (diff) | |
download | glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.zip glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.tar.gz glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.tar.bz2 |
Update.
2003-03-08 Ulrich Drepper <drepper@redhat.com>
* rt/tst-aio7.c (do_test): Change BYTES into a #define.
Diffstat (limited to 'rt/tst-aio7.c')
-rw-r--r-- | rt/tst-aio7.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c index a035f94..39c366f 100644 --- a/rt/tst-aio7.c +++ b/rt/tst-aio7.c @@ -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"; |