summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Log.cpp')
-rw-r--r--src/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index cf18b58c..26112877 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -108,7 +108,7 @@ Log::vtprintf(LV2_URID type, const char* fmt, va_list args)
ColorContext ctx(stderr, ColorContext::Color::GREEN);
ret = vfprintf(stderr, fmt, args);
} else {
- fprintf(stderr, "Unknown log type %d\n", type);
+ fprintf(stderr, "Unknown log type %u\n", type);
return 0;
}
if (_flush) {