Changeset 75954 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Dec 4, 2018 8:53:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r75702 r75954 1503 1503 */ 1504 1504 uint32_t u32ClientId = 0; 1505 int rc = VINF_SUCCESS; 1506 1507 rc = VbglR3GuestPropConnect(&u32ClientId); 1505 int rc = VbglR3GuestPropConnect(&u32ClientId); 1508 1506 if (RT_FAILURE(rc)) 1509 1507 VBoxControlError("Failed to connect to the guest property service, error %Rrc\n", rc); … … 1550 1548 else if (rc == VERR_INTERRUPTED) 1551 1549 VBoxControlError("The request timed out or was interrupted\n"); 1552 #ifndef RT_OS_WINDOWS /* Windows guests do not do this right */1553 1550 else if (RT_FAILURE(rc) && rc != VERR_NOT_FOUND) 1554 1551 VBoxControlError("Failed to get a notification, error %Rrc\n", rc); 1555 #endif1556 1552 } 1557 1553
Note:
See TracChangeset
for help on using the changeset viewer.