diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-07-05 21:49:20 +0200 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-07-05 21:49:20 +0200 |
commit | 3e56c4fa4b69e20afda0c162714549ee116e06cc (patch) | |
tree | 6bea9ee69bed640f36c914abb21024d71c8b6ff4 | |
parent | 9d89e6910ef356caf626cbdb9d1d7104e3dc62ef (diff) |
fixed conf_set_int64
-rw-r--r-- | conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -291,7 +291,7 @@ conf_set_int (const char *key, int val) { void conf_set_int64 (const char *key, int64_t val) { char s[20]; - snprintf (s, sizeof (s), PRId64, val); + snprintf (s, sizeof (s), "%"PRId64, val); conf_set_str (key, s); } |