- Timestamp:
- Apr 4, 2017 2:01:42 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/rtStrFormatKernelAddress-generic.cpp
r66416 r66417 33 33 #include "internal/iprt.h" 34 34 35 #include <iprt/log.h>36 35 #include <iprt/assert.h> 37 36 #include <iprt/string.h> … … 67 66 pszBuf[cbBuf - 1] = '\0'; 68 67 return cbBuf - 1; 68 69 69 #else /* DEBUG */ 70 return RT_CONCAT(RTStrFormatU,R0_ARCH_BITS)(pszBuf, cbBuf, uPtr, 16, cchWidth, cchPrecision, fFlags); 70 Assert(cbBuf >= 64); 71 return RTStrFormatNumber(pszBuf, uPtr, 16, cchWidth, cchPrecision, fFlags); 71 72 #endif /* DEBUG */ 72 73 }
Note:
See TracChangeset
for help on using the changeset viewer.

