]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
fix format options
authorAlan T. DeKok <aland@freeradius.org>
Tue, 21 Sep 2021 17:24:40 +0000 (13:24 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 21 Sep 2021 17:24:40 +0000 (13:24 -0400)
src/lib/unlang/compile.c

index 8ca326b3f1965d7b1eabc8a688c796582761b908..ea29c82bf65eba732fefce510837a480ada4d399 100644 (file)
@@ -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;