From 345a935c8dd9327527d52ba37945767ce9f8cdcb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 13 Aug 1997 15:35:01 +0000 Subject: [PATCH] (main): Use %08lx instead of %08x in printf because the variable named addresses is long. --- lib-src/hexl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-src/hexl.c b/lib-src/hexl.c index 9731321d4ae..053efbe0ccd 100644 --- a/lib-src/hexl.c +++ b/lib-src/hexl.c @@ -221,7 +221,7 @@ main (argc, argv) else { if (!i) - printf ("%08x: ", address); + printf ("%08lx: ", address); if (iso_flag) string[i+1] = -- 2.11.4.GIT