From: Jaroslav Kysela Date: Thu, 7 Mar 2019 07:23:13 +0000 (+0100) Subject: utils: sbuf - use correct format character, fixes #5565 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=811fd889e9da762d04977f3531aa1aae8ff37329;p=thirdparty%2Ftvheadend.git utils: sbuf - use correct format character, fixes #5565 --- diff --git a/src/utils.c b/src/utils.c index 673824e2d..a23ef2524 100644 --- a/src/utils.c +++ b/src/utils.c @@ -361,7 +361,7 @@ char *utf8_validate_inplace(char *s) static void sbuf_alloc_fail(size_t len) { - fprintf(stderr, "Unable to allocate %jd bytes\n", len); + fprintf(stderr, "Unable to allocate %zd bytes\n", len); abort(); }