- Timestamp:
- Mar 13, 2018 5:13:32 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r71314 r71316 640 640 /* Report back in any case. */ 641 641 int rc2 = VbglR3GuestCtrlMsgReplyEx(pHostCtx, rc, 0 /* Type */, 642 szPath, strlen(szPath) + 1 /* Include terminating zero */);642 szPath, (uint32_t)strlen(szPath) + 1 /* Include terminating zero */); 643 643 if (RT_FAILURE(rc2)) 644 644 VGSvcError("Failed to report user documents, rc=%Rrc\n", rc2); … … 663 663 /* Report back in any case. */ 664 664 int rc2 = VbglR3GuestCtrlMsgReplyEx(pHostCtx, rc, 0 /* Type */, 665 szPath, strlen(szPath) + 1 /* Include terminating zero */);665 szPath, (uint32_t)strlen(szPath) + 1 /* Include terminating zero */); 666 666 if (RT_FAILURE(rc2)) 667 667 VGSvcError("Failed to report user home, rc=%Rrc\n", rc2);
Note:
See TracChangeset
for help on using the changeset viewer.