# HG changeset patch # User Matti Hamalainen # Date 1578573921 -7200 # Node ID c3ebab7f90942e89e7ca12d041138bf56f191532 # Parent 6454bfb584d6de9599f0acdd152676a393927480 Fix one more format string to use proper PRIu_SIZE_T. diff -r 6454bfb584d6 -r c3ebab7f9094 sidinfo.c --- 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); }