summaryrefslogtreecommitdiff
path: root/string/tst-strtok.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-02-22 13:46:25 +0000
committerAndreas Jaeger <aj@suse.de>2001-02-22 13:46:25 +0000
commitab5dd2d9b4ab71e499837488af747429f008cbea (patch)
tree95f278258470f91ce735996fe9a136b73c838572 /string/tst-strtok.c
parentbcbd6c737cc6a0c50fb5573d53dd88a10d697e6f (diff)
Update.
* string/tst-strtok.c (main): Fix error messages. 2001-02-22 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'string/tst-strtok.c')
-rw-r--r--string/tst-strtok.c4
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;
}