Changeset 6453 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jan 22, 2008 4:42:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r6436 r6453 1099 1099 * @param pcbDataReturned Where to store the amount of returned data. Can be NULL. 1100 1100 */ 1101 static int VBoxGuestCommonIOCtl_Log(c har *pch, size_t cbData, size_t *pcbDataReturned)1102 { 1103 Log(("%.*s \n", cbData, pch));1101 static int VBoxGuestCommonIOCtl_Log(const char *pch, size_t cbData, size_t *pcbDataReturned) 1102 { 1103 Log(("%.*s", cbData, pch)); 1104 1104 if (pcbDataReturned) 1105 1105 *pcbDataReturned = 0;
Note:
See TracChangeset
for help on using the changeset viewer.