Changeset 36740 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Apr 20, 2011 9:50:51 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71271
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/GenericRequest.cpp
r31720 r36740 110 110 if (!ppReq || cbSize < sizeof (VMMDevRequestHeader)) 111 111 { 112 dprintf(("VbglGRAlloc: Invalid parameter: ppReq = %p, cbSize = % d\n", ppReq, cbSize));112 dprintf(("VbglGRAlloc: Invalid parameter: ppReq = %p, cbSize = %u\n", ppReq, cbSize)); 113 113 return VERR_INVALID_PARAMETER; 114 114 } -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestCtrl.cpp
r33540 r36740 30 30 *******************************************************************************/ 31 31 #include <iprt/string.h> 32 #include <iprt/stream.h> 32 33 #include <iprt/mem.h> 33 34 #include <iprt/assert.h> … … 318 319 VbglHGCMParmUInt32Set(&Msg.size, 0); 319 320 321 RTPrintf("vbglR3DoIOCtl: data = 0x%p, %u, msg = %u\n", pvData, cbData, sizeof(Msg)); 322 320 323 int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg)); 321 324 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.