aboutsummaryrefslogtreecommitdiff
path: root/string
diff options
context:
space:
mode:
Diffstat (limited to 'string')
-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 ed3400d..7e34aee 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;
}