Changeset 50593 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
- Timestamp:
- Feb 26, 2014 8:44:58 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibDragAndDrop.cpp
r50562 r50593 947 947 int rc; 948 948 949 uint32_t cbMaxChunk = _64K; /* Transfer max. 64K chunks per message.*/949 uint32_t cbMaxChunk = _64K; /** @todo Transfer max. 64K chunks per message. Configurable? */ 950 950 uint32_t cbSent = 0; 951 951 … … 968 968 Assert(cbSent == cbData); 969 969 970 LogFlowFunc(("Returning rc=%Rrc, cbData=%RU32, cbAddtionalData=%RU32 \n",971 rc, cbData, cbAdditionalData ));970 LogFlowFunc(("Returning rc=%Rrc, cbData=%RU32, cbAddtionalData=%RU32, cbSent=%RU32\n", 971 rc, cbData, cbAdditionalData, cbSent)); 972 972 return rc; 973 973 } … … 1144 1144 { 1145 1145 int rc2 = VbglR3DnDGHSendError(u32ClientId, rc); 1146 if (RT_SUCCESS(rc2)) 1147 rc2 = rc; 1146 AssertRC(rc2); 1148 1147 } 1149 1148
Note:
See TracChangeset
for help on using the changeset viewer.