Changeset 28516 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Apr 20, 2010 11:52:06 AM (15 years ago)
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r27967 r28516 1779 1779 else 1780 1780 { 1781 if (rc != VERR_INTERRUPTED) 1781 if ( rc != VERR_INTERRUPTED 1782 && rc != VERR_TIMEOUT) 1782 1783 LogRel(("VBoxGuestCommonIOCtl: HGCM_CALL: %s Failed. rc=%Rrc.\n", f32bit ? "32" : "64", rc)); 1783 1784 else -
trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp
r26425 r28516 906 906 else 907 907 { 908 if (rc != VERR_INTERRUPTED) 908 if ( rc != VERR_INTERRUPTED 909 || rc != VERR_TIMEOUT) 909 910 LogRel(("VbglR0HGCMInternalCall: vbglR0HGCMInternalDoCall failed. rc=%Rrc\n", rc)); 910 911 }
Note:
See TracChangeset
for help on using the changeset viewer.