From: Steven Schubiger Date: Sun, 7 Jun 2015 12:32:01 +0000 (+0200) Subject: Cast variable properly X-Git-Tag: v0.56~3 X-Git-Url: http://git.refcnt.org/?p=colorize.git;a=commitdiff_plain;h=85e7ff2cdccb0e16ef15aad7bb4fa469f82a8410 Cast variable properly --- diff --git a/colorize.c b/colorize.c index 9328be0..ea2a780 100644 --- a/colorize.c +++ b/colorize.c @@ -165,14 +165,14 @@ enum fmts { FMT_TYPE }; static const char *formats[] = { - "%s", /* generic */ - "%s '%s'", /* string */ - "%s `%s' %s", /* quote */ - "%s color '%s' %s", /* color */ - "%s color '%s' %s '%s'", /* random */ - "less than %u bytes %s", /* error */ - "%s: %s", /* file */ - "%s: %s: %s", /* type */ + "%s", /* generic */ + "%s '%s'", /* string */ + "%s `%s' %s", /* quote */ + "%s color '%s' %s", /* color */ + "%s color '%s' %s '%s'", /* random */ + "less than %lu bytes %s", /* error */ + "%s: %s", /* file */ + "%s: %s: %s", /* type */ }; enum { FOREGROUND, BACKGROUND }; @@ -916,7 +916,7 @@ print_text (const char *p, size_t len) size_t bytes_written; bytes_written = fwrite (p, 1, len, stdout); if (bytes_written != len) - vfprintf_fail (formats[FMT_ERROR], len, "written"); + vfprintf_fail (formats[FMT_ERROR], (unsigned long)len, "written"); } static bool