From 00fd39c9a042cb81236e197672d6a6334edf414d Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 27 Nov 2017 17:16:38 +0100 Subject: [PATCH] fix missing %s --- menu/cbs/menu_cbs_get_value.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/cbs/menu_cbs_get_value.c b/menu/cbs/menu_cbs_get_value.c index 25c9e1e5e6..7c42baa346 100644 --- a/menu/cbs/menu_cbs_get_value.c +++ b/menu/cbs/menu_cbs_get_value.c @@ -572,7 +572,7 @@ static void menu_action_setting_disp_set_label_perf_counters_common( return; snprintf(s, len, - PRIu64 " ticks, " PRIu64 " runs.", + "%" PRIu64 " ticks, %" PRIu64 " runs.", ((uint64_t)counters[offset]->total / (uint64_t)counters[offset]->call_cnt), (uint64_t)counters[offset]->call_cnt);