Changeset 10636 in vbox
- Timestamp:
- Jul 15, 2008 9:41:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r10628 r10636 33 33 #include <excpt.h> 34 34 #include <VBox/err.h> 35 #include <VBox/log.h> 35 36 #include <iprt/assert.h> 36 37 #include <iprt/asm.h> … … 1059 1060 case VBOXGUEST_IOCTL_LOG(0): /* The size isn't relevant on NT. */ 1060 1061 { 1061 /* Enable this only for debugging: 1062 dprintf(("VBoxGuest::VBoxGuestDeviceControl: VBOXGUEST_IOCTL_LOG \n"));1062 /* Enable this only for debugging: 1063 dprintf(("VBoxGuest::VBoxGuestDeviceControl: VBOXGUEST_IOCTL_LOG %.*s\n", (int)pStack->Parameters.DeviceIoControl.InputBufferLength, pBuf)); 1063 1064 */ 1064 LogRel(("%.*s \n", (int)pStack->Parameters.DeviceIoControl.InputBufferLength, pBuf));1065 LogRel(("%.*s", (int)pStack->Parameters.DeviceIoControl.InputBufferLength, pBuf)); 1065 1066 cbOut = 0; 1066 } break; 1067 break; 1068 } 1067 1069 1068 1070 default:
Note:
See TracChangeset
for help on using the changeset viewer.