From 345926296f748db5ff283ce69c0ed4d563fcc8ff Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 18 Aug 2021 22:11:41 -0700 Subject: Updating issues discovered using g++ 10 --- src/stable/string.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stable/string.cpp') diff --git a/src/stable/string.cpp b/src/stable/string.cpp index 59d8147..ed4e58b 100644 --- a/src/stable/string.cpp +++ b/src/stable/string.cpp @@ -1486,13 +1486,13 @@ int32_t &Bu::operator<<( int32_t &dst, const Bu::String &sIn ) uint64_t &Bu::operator<<( uint64_t &dst, const Bu::String &sIn ) { - sscanf( sIn.getStr(), "%llu", &dst ); + sscanf( sIn.getStr(), "%lu", &dst ); return dst; } int64_t &Bu::operator<<( int64_t &dst, const Bu::String &sIn ) { - sscanf( sIn.getStr(), "%lld", &dst ); + sscanf( sIn.getStr(), "%ld", &dst ); return dst; } -- cgit v1.2.3