1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Explicitly require long long abs().

This commit is contained in:
Bartosz Taudul 2019-07-25 18:36:27 +02:00
parent abaa0e8f6e
commit 37c76edcd8

View File

@ -259,7 +259,7 @@ const char* MemSizeToString( int64_t val )
char* buf = bufpool[bufsel];
bufsel = ( bufsel + 1 ) % Pool;
const auto aval = abs( val );
const auto aval = llabs( val );
if( aval < 10000ll )
{