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 d1a1a48..f157603 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 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. 2001-02-18 Maciej W. Rozycki 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; } -- 2.7.4