diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-08-15 11:12:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-08-15 11:12:47 +0100 |
| commit | 6807378177adede49eb7b992df3af79e8346cec9 (patch) | |
| tree | 8e52d2192de3d08f87b4d1b89085ff2bc7b51326 /src | |
| parent | 015d2c89935d1d7bca38393e8d31e7546fbd496f (diff) | |
Hack.
Diffstat (limited to 'src')
| -rw-r--r-- | src/compose.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compose.hpp b/src/compose.hpp index 0ab65ba2..3ea21d74 100644 --- a/src/compose.hpp +++ b/src/compose.hpp @@ -156,7 +156,7 @@ namespace StringPrivate inline void write(std::string& s, const uint32_t& obj) { char buffer[64]; - snprintf(buffer, 64, "%d" % PRIu32, obj); + snprintf(buffer, 64, "%d" PRIu32, obj); s += buffer; } |
