Changeset 95812 in vbox for trunk/src/VBox
- Timestamp:
- Jul 25, 2022 1:22:06 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r94628 r95812 58 58 #ifdef IN_RING3 59 59 # include <iprt/alloca.h> 60 # include <stdio.h> 60 # ifndef IPRT_NO_CRT 61 # include <stdio.h> 62 # endif 61 63 #endif 62 64 … … 3612 3614 else 3613 3615 { 3616 # ifndef IPRT_NO_CRT 3614 3617 fprintf(stderr, "pBufDesc->offBuf >= pBufDesc->cbBuf (%#x >= %#x)\n", pBufDesc->offBuf, pBufDesc->cbBuf); 3618 # else 3619 RTLogWriteStdErr(RT_STR_TUPLE("pBufDesc->offBuf >= pBufDesc->cbBuf\n")); 3620 # endif 3615 3621 AssertBreakpoint(); AssertBreakpoint(); 3616 3622 } … … 3723 3729 else 3724 3730 { 3731 # ifndef IPRT_NO_CRT 3725 3732 fprintf(stderr, "offBuf >= cbBuf (%#x >= %#x)\n", offBuf, cbBuf); 3733 # else 3734 RTLogWriteStdErr(RT_STR_TUPLE("offBuf >= cbBuf\n")); 3735 # endif 3726 3736 AssertBreakpoint(); AssertBreakpoint(); 3727 3737 }
Note:
See TracChangeset
for help on using the changeset viewer.