summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
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