From: Justin Viiret Date: Tue, 3 Nov 2015 05:24:06 +0000 (+1100) Subject: depth: correct sign in printf format X-Git-Tag: v4.1.0^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9efe071254acd762f12598f16c4a76a71082288;p=thirdparty%2Fvectorscan.git depth: correct sign in printf format --- diff --git a/src/util/depth.h b/src/util/depth.h index 29ff2819..977fd0c3 100644 --- a/src/util/depth.h +++ b/src/util/depth.h @@ -183,7 +183,7 @@ public: s64a rv = val + d; if (rv < 0 || (u64a)rv >= val_infinity) { - DEBUG_PRINTF("depth %llu too large to represent!\n", rv); + DEBUG_PRINTF("depth %lld too large to represent!\n", rv); throw DepthOverflowError(); }