Details
-
Bug
-
Resolution: Fixed
-
Major
Description
Printing incorrectly a 64-bits variable.
Current:
_tprintf(_T("Length: %ull\n"), This->Size); |
Fixed:
_tprintf(_T("Length: %llu\n"), This->Size); |
Spotted by PVS-Studio 5.02
Attachments
Issue Links
- duplicates
-
CORE-8113 Fix a _tprintf in network application
- Resolved