From: Gerhard Sittig Date: Wed, 22 Dec 2021 11:30:21 +0000 (+0100) Subject: input/vcd: silence printf() format compiler warning X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=968b1a23f23e1f22f7e438a39e3235b4f21b8b14 input/vcd: silence printf() format compiler warning --- diff --git a/src/input/vcd.c b/src/input/vcd.c index 4e0310ba..e751e885 100644 --- a/src/input/vcd.c +++ b/src/input/vcd.c @@ -304,7 +304,7 @@ static void ts_stats_check_early(struct ts_stats *stats) if (stats->total_ts_seen != cp->count) continue; /* First occurance of that timestamp count. Check the value. */ - sr_dbg("TS early chk: total %" PRIu64 ", min delta %zu / %zu.", + sr_dbg("TS early chk: total %zu, min delta %" PRIu64 " / %" PRIu64 ".", cp->count, seen_delta, check_delta); if (check_delta < cp->delta) return;