Changeset 71819 in vbox
- Timestamp:
- Apr 11, 2018 11:00:35 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121941
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r71818 r71819 642 642 } 643 643 644 rc = dstFile->i_writeData(uTimeoutMs, byBuf, cbRead, NULL /* No partial writes */);644 rc = dstFile->i_writeData(uTimeoutMs, byBuf, (uint32_t)cbRead, NULL /* No partial writes */); 645 645 if (RT_FAILURE(rc)) 646 646 { 647 647 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 648 Utf8StrFmt(GuestSession::tr("Writing to % RU32bytes to file failed: %Rrc"), cbRead, rc));648 Utf8StrFmt(GuestSession::tr("Writing to %zu bytes to file failed: %Rrc"), cbRead, rc)); 649 649 break; 650 650 }
Note:
See TracChangeset
for help on using the changeset viewer.