Changeset 91789 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- Timestamp:
- Oct 17, 2021 6:16:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r87700 r91789 536 536 537 537 538 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) 539 { 540 va_list va; 541 538 SUPR0DECL(int) SUPR0PrintfV(const char *pszFormat, va_list va) 539 { 542 540 #if 0 //def DEBUG_bird 543 va_start(va, pszFormat); 544 RTLogComPrintfV(pszFormat, va); 545 va_end(va); 541 va_list va2; 542 va_copy(va2, va); 543 RTLogComPrintfV(pszFormat, va2); 544 va_end(va2); 546 545 #endif 547 546 548 va_start(va, pszFormat); 549 int cch = RTLogFormatV(VBoxDrvLogOutput, NULL, pszFormat, va); 550 va_end(va); 551 552 return cch; 547 RTLogFormatV(VBoxDrvLogOutput, NULL, pszFormat, va); 548 return 0; 553 549 } 554 550
Note:
See TracChangeset
for help on using the changeset viewer.