Changeset 62566 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Jul 26, 2016 3:16:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/xarvfs.cpp
r62477 r62566 1402 1402 * @interface_method_impl{RTVFSSYMLINKOPS,pfnRead} 1403 1403 */ 1404 static DECLCALLBACK(int) rtZipXarFssSym_Read(void *pvThis, char *pszTarget, size_t cb Xarget)1404 static DECLCALLBACK(int) rtZipXarFssSym_Read(void *pvThis, char *pszTarget, size_t cbTarget) 1405 1405 { 1406 1406 PRTZIPXARBASEOBJ pThis = (PRTZIPXARBASEOBJ)pvThis; … … 1408 1408 return RTStrCopy(pszTarget, cbXarget, pThis->pXarReader->szTarget); 1409 1409 #else 1410 RT_NOREF_PV(pThis); RT_NOREF_PV(pszTarget); RT_NOREF_PV(cbTarget); 1410 1411 return VERR_NOT_IMPLEMENTED; 1411 1412 #endif … … 1819 1820 { 1820 1821 int rc; 1822 RT_NOREF_PV(pXarHdr); 1821 1823 1822 1824 /*
Note:
See TracChangeset
for help on using the changeset viewer.