Changeset 18380 in vbox for trunk/src/VBox/GuestHost/OpenGL
- Timestamp:
- Mar 27, 2009 10:52:35 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r18111 r18380 719 719 { 720 720 conn->u32ClientID = info.u32ClientID; 721 crDebug("HGCM connect was successful: client id = %x\n", conn->u32ClientID);721 crDebug("HGCM connect was successful: client id =0x%x\n", conn->u32ClientID); 722 722 } 723 723 else 724 724 { 725 crDebug("HGCM connect failed with rc= %x\n", info.result);725 crDebug("HGCM connect failed with rc=0x%x\n", info.result); 726 726 return FALSE; 727 727 } … … 730 730 { 731 731 #ifdef RT_OS_WINDOWS 732 crDebug(" HGCM connect failed with rc=%x\n", GetLastError());732 crDebug("IOCTL for HGCM connect failed with rc=0x%x\n", GetLastError()); 733 733 #else 734 crDebug(" HGCM connect failed with rc=%x\n", errno);734 crDebug("IOCTL for HGCM connect failed with rc=0x%x\n", errno); 735 735 #endif 736 736 return FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.