mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
depth: correct sign in printf format
This commit is contained in:
committed by
Matthew Barr
parent
62776b615b
commit
d9efe07125
@@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user