From ab5dd2d9b4ab71e499837488af747429f008cbea Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 22 Feb 2001 13:46:25 +0000 Subject: [PATCH] Update. * string/tst-strtok.c (main): Fix error messages. 2001-02-22 Andreas Jaeger --- ChangeLog | 4 ++++ string/tst-strtok.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d1a1a481d4..f157603abd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-02-22 Andreas Jaeger + + * string/tst-strtok.c (main): Fix error messages. + 2001-02-22 Andreas Jaeger * math/Makefile: Remove omit-long-double-fcts. 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; } -- 2.43.5