diff options
author | kris <kris@FreeBSD.org> | 2000-07-10 09:07:04 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-07-10 09:07:04 +0000 |
commit | d84b4d3f4d875bdc29e1af239bfea2dadaff8f85 (patch) | |
tree | de9faee9d10956d7c7b8d7fdb924c9f6d1443e35 | |
parent | 9ecdb01e436eca2df80d801c0f47ba042d9ad984 (diff) | |
download | FreeBSD-src-d84b4d3f4d875bdc29e1af239bfea2dadaff8f85.zip FreeBSD-src-d84b4d3f4d875bdc29e1af239bfea2dadaff8f85.tar.gz |
Oops, missed another printf() invocation with no format string.
-rw-r--r-- | usr.bin/hexdump/display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/hexdump/display.c b/usr.bin/hexdump/display.c index 49d5f14..982e611 100644 --- a/usr.bin/hexdump/display.c +++ b/usr.bin/hexdump/display.c @@ -177,7 +177,7 @@ print(pr, bp) (void)printf(pr->fmt, (char *)bp); break; case F_TEXT: - (void)printf(pr->fmt); + (void)printf("%s", pr->fmt); break; case F_U: conv_u(pr, bp); |