diff --git a/server/TracyPrint.hpp b/server/TracyPrint.hpp index 71f678e1..bf37c8f2 100644 --- a/server/TracyPrint.hpp +++ b/server/TracyPrint.hpp @@ -151,7 +151,7 @@ char* PrintFloatFixedWidth( char* begin, char* end, T value, int fixedWidth ) { assert( end > dstPtr ); *dstPtr++ = ' '; } - assert( end > dstPtr + width ); + assert( end >= dstPtr + width ); memcpy( dstPtr, buf, width ); dstPtr += width; assert(dstPtr == begin + fixedWidth);