From: Alan T. DeKok Date: Tue, 21 Sep 2021 17:24:40 +0000 (-0400) Subject: fix format options X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c052b389af943341683d50bbe3b6bd423bb7bfe6;p=thirdparty%2Ffreeradius-server.git fix format options --- diff --git a/src/lib/unlang/compile.c b/src/lib/unlang/compile.c index 8ca326b3f1..ea29c82bf6 100644 --- a/src/lib/unlang/compile.c +++ b/src/lib/unlang/compile.c @@ -4158,7 +4158,7 @@ static void unlang_perf_dump(fr_log_t *log, unlang_t const *instruction, int dep t = &unlang_thread_array[instruction->number]; - fr_log(log, L_DBG, file, line, "count=%llu cpu_time=%llu\n", t->use_count, t->cpu_time); + fr_log(log, L_DBG, file, line, "count=%" PRIu64 " cpu_time=%" PRIu64 "\n", t->use_count, t->cpu_time); if (g->children) { unlang_t *child;