From c1f81616b2ceaead653f4b31d5dee2fb5f0a66b5 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 27 Nov 2017 17:09:59 +0100 Subject: [PATCH] #582 --- menu/menu_displaylist.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/menu/menu_displaylist.c b/menu/menu_displaylist.c index 2fddc1669c..0006e7ef05 100644 --- a/menu/menu_displaylist.c +++ b/menu/menu_displaylist.c @@ -834,21 +834,21 @@ static int menu_displaylist_parse_system_info(menu_displaylist_info_t *info) if (memory_used != 0 && memory_total != 0) { snprintf(tmp, sizeof(tmp), - "%s %s: " STRING_REP_UINT64 "/" STRING_REP_UINT64 " B", + "%s %s: " PRIu64 "/" PRIu64 " B", msg_hash_to_str(MSG_MEMORY), msg_hash_to_str(MSG_IN_BYTES), memory_used, memory_total ); snprintf(tmp2, sizeof(tmp2), - "%s %s: " STRING_REP_UINT64 "/" STRING_REP_UINT64 " MB", + "%s %s: " PRIu64 "/" PRIu64 " MB", msg_hash_to_str(MSG_MEMORY), msg_hash_to_str(MSG_IN_MEGABYTES), bytes_to_mb(memory_used), bytes_to_mb(memory_total) ); snprintf(tmp3, sizeof(tmp3), - "%s %s: " STRING_REP_UINT64 "/" STRING_REP_UINT64 " GB", + "%s %s: " PRIu64 "/" PRIu64 " GB", msg_hash_to_str(MSG_MEMORY), msg_hash_to_str(MSG_IN_GIGABYTES), bytes_to_gb(memory_used),