This commit is contained in:
Alcaro 2017-11-27 17:09:16 +01:00 committed by GitHub
parent 4275dd8f1f
commit 4fb12c4bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}