From 55e15c86717f38c9b510e4287cb0b4f165b8cb10 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Mon, 21 Sep 2020 13:56:12 +0200 Subject: Fix compiler warning when printing number of cache hits & misses (part 2) --- src/doxygen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 9a302c8..ee414e7 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -32,6 +32,7 @@ #include #include #include +#include #include "version.h" #include "doxygen.h" @@ -11699,7 +11700,7 @@ void generateOutput() } int cacheParam; - msg("lookup cache used %ld/%ld hits=%llu misses=%llu\n", + msg("lookup cache used %zu/%zu hits=%" PRIu64 " misses=%" PRIu64 "\n", Doxygen::lookupCache->size(), Doxygen::lookupCache->capacity(), Doxygen::lookupCache->hits(), -- cgit v0.12