Changeset 4538 in vbox
- Timestamp:
- Sep 5, 2007 3:14:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/logbackdoor.cpp
r4071 r4538 33 33 { 34 34 va_list args; 35 size_t cb; 35 36 36 37 va_start(args, pszFormat); 37 size_tcb = RTLogBackdoorPrintfV(pszFormat, args);38 cb = RTLogBackdoorPrintfV(pszFormat, args); 38 39 va_end(args); 39 40 … … 61 62 RTDECL(void) RTLogWriteUser(const char *pch, size_t cb) 62 63 { 63 for (const uint8_t *pu8 = (const uint8_t *)pch; cb-- > 0; pu8++) 64 const uint8_t *pu8; 65 for (pu8 = (const uint8_t *)pch; cb-- > 0; pu8++) 64 66 ASMOutU8(RTLOG_DEBUG_PORT, *pu8); 65 67 /** @todo a rep outs could be more efficient, I don't know...
Note:
See TracChangeset
for help on using the changeset viewer.