Changeset 28915 in vbox for trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
- Timestamp:
- Apr 29, 2010 6:12:35 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r28877 r28915 92 92 { 93 93 bool fRc = false; 94 char *pszNativePath;95 int rc = rtPathToNative(&pszNativePath, pszPath );94 char const *pszNativePath; 95 int rc = rtPathToNative(&pszNativePath, pszPath, NULL); 96 96 if (RT_SUCCESS(rc)) 97 97 { … … 205 205 int iErr = errno; 206 206 #else 207 char *pszNativeFilename;208 rc = rtPathToNative(&pszNativeFilename, pszFilename );207 char const *pszNativeFilename; 208 rc = rtPathToNative(&pszNativeFilename, pszFilename, NULL); 209 209 if (RT_FAILURE(rc)) 210 210 return (rc); … … 372 372 RTR3DECL(int) RTFileDelete(const char *pszFilename) 373 373 { 374 char *pszNativeFilename;375 int rc = rtPathToNative(&pszNativeFilename, pszFilename );374 char const *pszNativeFilename; 375 int rc = rtPathToNative(&pszNativeFilename, pszFilename, NULL); 376 376 if (RT_SUCCESS(rc)) 377 377 {
Note:
See TracChangeset
for help on using the changeset viewer.