diff options
Diffstat (limited to '')
-rw-r--r-- | src/stable/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 ) | |||
1486 | 1486 | ||
1487 | uint64_t &Bu::operator<<( uint64_t &dst, const Bu::String &sIn ) | 1487 | uint64_t &Bu::operator<<( uint64_t &dst, const Bu::String &sIn ) |
1488 | { | 1488 | { |
1489 | sscanf( sIn.getStr(), "%llu", &dst ); | 1489 | sscanf( sIn.getStr(), "%lu", &dst ); |
1490 | return dst; | 1490 | return dst; |
1491 | } | 1491 | } |
1492 | 1492 | ||
1493 | int64_t &Bu::operator<<( int64_t &dst, const Bu::String &sIn ) | 1493 | int64_t &Bu::operator<<( int64_t &dst, const Bu::String &sIn ) |
1494 | { | 1494 | { |
1495 | sscanf( sIn.getStr(), "%lld", &dst ); | 1495 | sscanf( sIn.getStr(), "%ld", &dst ); |
1496 | return dst; | 1496 | return dst; |
1497 | } | 1497 | } |
1498 | 1498 | ||