]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
depth: correct sign in printf format
authorJustin Viiret <justin.viiret@intel.com>
Tue, 3 Nov 2015 05:24:06 +0000 (16:24 +1100)
committerMatthew Barr <matthew.barr@intel.com>
Tue, 10 Nov 2015 03:36:38 +0000 (14:36 +1100)
src/util/depth.h

index 29ff2819178b3ea4bac1ecaf14ea4af7097c15bd..977fd0c30205e217e3a6bcb00d2765c264311560 100644 (file)
@@ -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();
         }