Changeset 50593 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Feb 26, 2014 8:44:58 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDImpl.cpp
r50561 r50593 372 372 uint32_t uState, int rcOp /* = VINF_SUCCESS */) 373 373 { 374 LogFlowFunc(("uPercentage=%RU32, uState=% ld, rcOp=%Rrc\n",374 LogFlowFunc(("uPercentage=%RU32, uState=%RU32, rcOp=%Rrc\n", 375 375 uPercentage, uState, rcOp)); 376 376 … … 438 438 #else 439 439 AssertMsg(m_cbDataCurrent <= m_cbDataTotal, 440 ("More data transferred (% RU32) than initially announced (%RU32)\n",441 m_cbDataCurrent, m_cbDataTotal ));440 ("More data transferred (%zu) than initially announced (%zu), cbDataAdd=%zu\n", 441 m_cbDataCurrent, m_cbDataTotal, cbDataAdd)); 442 442 #endif 443 443 int rc = setProgress(cPercentage, uStatus); … … 449 449 rc = setProgress(100, DragAndDropSvc::DND_PROGRESS_CANCELLED); 450 450 451 LogFlowFuncLeaveRC(rc); 451 452 return rc; 452 453 } … … 1097 1098 AssertReturn(cbPath, VERR_INVALID_PARAMETER); 1098 1099 1099 LogFlowFunc((" strDir=%s, cbPath=%zu, fMode=0x%x\n",1100 LogFlowFunc(("pszPath=%s, cbPath=%zu, fMode=0x%x\n", 1100 1101 pszPath, cbPath, fMode)); 1101 1102 … … 1125 1126 AssertReturn(cbPath, VERR_INVALID_PARAMETER); 1126 1127 1127 LogFlowFunc((" strFile=%s, cbPath=%zu, fMode=0x%x\n",1128 LogFlowFunc(("pszPath=%s, cbPath=%zu, fMode=0x%x\n", 1128 1129 pszPath, cbPath, fMode)); 1129 1130
Note:
See TracChangeset
for help on using the changeset viewer.