From 5f45b7d53361bd32ce390e12f814660a98f86aa9 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 6 Oct 2017 13:15:28 +0200 Subject: use appropriate integer types Mainly found with clang -Wconversion -Wshorten-64-to-32. --- mshow.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mshow.c') diff --git a/mshow.c b/mshow.c index eff8c76..5f24d75 100644 --- a/mshow.c +++ b/mshow.c @@ -45,7 +45,7 @@ printable(int c) return (unsigned)c-0x20 < 0x5f; } -int +size_t print_ascii(char *body, size_t bodylen) { if (safe_output) { @@ -567,7 +567,7 @@ print_date_header(char *v) printf(" ("); time_t d = t < now ? now - t : t - now; - int l; + char l; if (d > 60*60*24*7*52) l = 'y'; else if (d > 60*60*24*7) l = 'w'; else if (d > 60*60*24) l = 'd'; @@ -576,7 +576,7 @@ print_date_header(char *v) else l = 's'; int p = 3; - int z; + long z; switch (l) { case 'y': z = d / (60*60*24*7*52); -- cgit 1.4.1