mirror of
https://github.com/libretro/RetroArch
synced 2025-04-01 04:20:27 +00:00
fix missing %s
This commit is contained in:
parent
6394e30cb5
commit
a96e3e1ead
@ -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), PRIu64, val);
|
||||
snprintf(buf, sizeof(buf), "%" PRIu64, val);
|
||||
config_set_string(conf, key, buf);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user