summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-12 13:39:31 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-12 13:39:31 +0100
commite5ed6d4774c1995b7360cb20475667c43e0771fd (patch)
treeee6f5951e87b0b6dd3181e81c1bf08aa396a20ab /src/lib
parent9c10a236e6c4a9c987f8a55f4ae59b29ae9b939e (diff)
Typo.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/compose.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/compose.hpp b/src/lib/compose.hpp
index 44f08e715..3059c9a41 100644
--- a/src/lib/compose.hpp
+++ b/src/lib/compose.hpp
@@ -137,7 +137,7 @@ namespace StringPrivate
{
char buffer[64];
#ifdef DCPOMATIC_WINDOWS
- __mingw_snprintf(buffer, 64, "%" PRud64, obj);
+ __mingw_snprintf(buffer, 64, "%" PRIu64, obj);
#else
snprintf(buffer, 64, "%" PRIu64, obj);
#endif