diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-22 13:46:25 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-22 13:46:25 +0000 |
commit | ab5dd2d9b4ab71e499837488af747429f008cbea (patch) | |
tree | 95f278258470f91ce735996fe9a136b73c838572 /string | |
parent | bcbd6c737cc6a0c50fb5573d53dd88a10d697e6f (diff) | |
download | glibc-ab5dd2d9b4ab71e499837488af747429f008cbea.tar.gz glibc-ab5dd2d9b4ab71e499837488af747429f008cbea.tar.xz glibc-ab5dd2d9b4ab71e499837488af747429f008cbea.zip |
Update.
* string/tst-strtok.c (main): Fix error messages. 2001-02-22 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'string')
-rw-r--r-- | string/tst-strtok.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/tst-strtok.c b/string/tst-strtok.c index ed3400d820..7e34aeefaa 100644 --- a/string/tst-strtok.c +++ b/string/tst-strtok.c @@ -10,12 +10,12 @@ main (void) if (strtok (buf, " ") != NULL) { - puts ("first strtok call did return NULL"); + puts ("first strtok call did not return NULL"); result = 1; } else if (strtok (NULL, " ") != NULL) { - puts ("second strtok call did return NULL"); + puts ("second strtok call did not return NULL"); result = 1; } |