Changeset 58113 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestIDC-unix.c.h
- Timestamp:
- Oct 8, 2015 10:13:54 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestIDC-unix.c.h
r58089 r58113 89 89 #endif 90 90 91 LogRel(("VBoxGuestIDCOpen: V bgdCommonCreateKernelSession failed. rc=%d\n", rc));91 LogRel(("VBoxGuestIDCOpen: VGDrvCommonCreateKernelSession failed. rc=%d\n", rc)); 92 92 return NULL; 93 93 } … … 103 103 { 104 104 PVBOXGUESTSESSION pSession = (PVBOXGUESTSESSION)pvSession; 105 LogFlow(("VBoxGuestIDCClose: \n"));105 LogFlow(("VBoxGuestIDCClose: pvSession=%p\n", pvSession)); 106 106 107 107 AssertPtrReturn(pSession, VERR_INVALID_POINTER); … … 141 141 142 142 AssertPtrReturn(pSession, VERR_INVALID_POINTER); 143 AssertMsgReturn(pSession->pDevExt == &g_DevExt, 144 ("SC: %p != %p\n", pSession->pDevExt, &g_DevExt), VERR_INVALID_HANDLE); 143 AssertMsgReturn(pSession->pDevExt == &g_DevExt, ("SC: %p != %p\n", pSession->pDevExt, &g_DevExt), VERR_INVALID_HANDLE); 145 144 146 145 return VGDrvCommonIoCtl(iCmd, &g_DevExt, pSession, pvData, cbData, pcbDataReturned);
Note:
See TracChangeset
for help on using the changeset viewer.