1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
* 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  <drepper@cygnus.com>
This commit is contained in:
Ulrich Drepper
1998-11-13 19:03:53 +00:00
parent 47b856a9ea
commit 77d10f94bf
5 changed files with 17 additions and 9 deletions

View File

@@ -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;