Changeset 96162 in vbox for trunk/src/VBox/Runtime/common/string/nocrt-strtoull.cpp
- Timestamp:
- Aug 12, 2022 11:28:29 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/nocrt-strtoull.cpp
r96059 r96162 43 43 #if LLONG_BIT == 64 44 44 uint64_t uValue = 0; 45 int rc = RTStrToUInt64Ex( psz, ppszNext, (unsigned)iBase, &uValue);45 int rc = RTStrToUInt64Ex(RTStrStripL(psz), ppszNext, (unsigned)iBase, &uValue); 46 46 #else 47 47 # error "Unsupported LLONG_BIT value"
Note:
See TracChangeset
for help on using the changeset viewer.