depth: correct sign in printf format

This commit is contained in:
Justin Viiret 2015-11-03 16:24:06 +11:00 committed by Matthew Barr
parent 62776b615b
commit d9efe07125

View 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();
}