aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-08 18:56:15 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-08 18:56:15 +0000
commit05ae97d81d4a185f0c4e09a4146072a283391b4d (patch)
tree103f173417debaa458c81163403b432774df9f58
parentccf1d5737a2241f2521eb3af2bbf0c118dce828d (diff)
downloadglibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.tar
glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.tar.gz
glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.tar.bz2
glibc-05ae97d81d4a185f0c4e09a4146072a283391b4d.zip
Update.
2003-03-08 Ulrich Drepper <drepper@redhat.com> * rt/tst-aio7.c (do_test): Change BYTES into a #define.
-rw-r--r--ChangeLog4
-rw-r--r--rt/tst-aio7.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 34780aebc0..41bac3436c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/rt/tst-aio7.c b/rt/tst-aio7.c
index a035f943ba..39c366f8eb 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";