From 4fb12c4bd314a3bc682cdce960ec2c7c0c22e504 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 27 Nov 2017 17:09:16 +0100 Subject: [PATCH] #5802 --- libretro-common/file/config_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/config_file.c b/libretro-common/file/config_file.c index 87f72238fb..3d3189dd86 100644 --- a/libretro-common/file/config_file.c +++ b/libretro-common/file/config_file.c @@ -892,7 +892,7 @@ void config_set_uint64(config_file_t *conf, const char *key, uint64_t val) char buf[128]; buf[0] = '\0'; - snprintf(buf, sizeof(buf), STRING_REP_UINT64, val); + snprintf(buf, sizeof(buf), PRIu64, val); config_set_string(conf, key, buf); }