summaryrefslogtreecommitdiff
path: root/stdio-common/scanf7.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/scanf7.c')
-rw-r--r--stdio-common/scanf7.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/scanf7.c b/stdio-common/scanf7.c
index 386dac4d06..d5023af8a1 100644
--- a/stdio-common/scanf7.c
+++ b/stdio-common/scanf7.c
@@ -8,7 +8,7 @@ main ()
n = -1;
ret = sscanf ("1000", "%lld", &n);
- printf ("%%lld: ret: %d, n: %Ld, c: %c\n", ret, n);
+ printf ("%%lld: ret: %d, n: %Ld\n", ret, n);
if (ret != 1 || n != 1000L)
abort ();