From 77d10f94bf43b73394f9a3eaf1052c4bfc52905f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 13 Nov 1998 19:03:53 +0000 Subject: Update. * version.h (VERSION): Bump to 2.0.102. * stdio-common/tstdiomisc.c (t2): Update test case for last scanf change. * stdio-common/scanf7.c (main): Likewise. 1998-11-13 Ulrich Drepper --- stdio-common/scanf7.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdio-common/scanf7.c') diff --git a/stdio-common/scanf7.c b/stdio-common/scanf7.c index 17d0872..c746e47 100644 --- a/stdio-common/scanf7.c +++ b/stdio-common/scanf7.c @@ -16,7 +16,7 @@ main (int argc, char *argv[]) n = -2; ret = sscanf ("1000", "%llld", &n); printf ("%%llld: ret: %d, n: %Ld\n", ret, n); - if (ret != 0 || n >= 0L) + if (ret > 0 || n >= 0L) abort (); return 0; -- cgit v1.1