changeset 293:c3ebab7f9094

Fix one more format string to use proper PRIu_SIZE_T.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 09 Jan 2020 14:45:21 +0200
parents 6454bfb584d6
children c9cc62e7f221
files sidinfo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sidinfo.c	Thu Jan 09 13:50:44 2020 +0200
+++ b/sidinfo.c	Thu Jan 09 14:45:21 2020 +0200
@@ -1222,7 +1222,7 @@
 void siSTILError(th_ioctx *fh, const int err, const char *msg)
 {
     (void) err;
-    THERR("[%s:%d] %s\n", fh->filename, fh->line, msg);
+    THERR("[%s:%" PRIu_SIZE_T "] %s\n", fh->filename, fh->line, msg);
 }