Changeset 43879 in vbox for trunk/src/VBox/Runtime/r3/posix/pathhost-posix.cpp
- Timestamp:
- Nov 15, 2012 2:49:23 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 82091
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/pathhost-posix.cpp
r37563 r43879 135 135 * @param pvUser2 Unused. 136 136 */ 137 static DECLCALLBACK(int32_t) rtPathConvInitOnce(void *pvUser 1, void *pvUser2)137 static DECLCALLBACK(int32_t) rtPathConvInitOnce(void *pvUser) 138 138 { 139 139 /* … … 173 173 } 174 174 175 NOREF(pvUser 1); NOREF(pvUser2);175 NOREF(pvUser); 176 176 return VINF_SUCCESS; 177 177 } … … 182 182 *ppszNativePath = NULL; 183 183 184 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL , NULL);184 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL); 185 185 if (RT_SUCCESS(rc)) 186 186 { … … 209 209 *ppszPath = NULL; 210 210 211 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL , NULL);211 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL); 212 212 if (RT_SUCCESS(rc)) 213 213 { … … 247 247 int rtPathFromNativeCopy(char *pszPath, size_t cbPath, const char *pszNativePath, const char *pszBasePath) 248 248 { 249 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL , NULL);249 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL); 250 250 if (RT_SUCCESS(rc)) 251 251 { … … 267 267 int rtPathFromNativeDup(char **ppszPath, const char *pszNativePath, const char *pszBasePath) 268 268 { 269 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL , NULL);269 int rc = RTOnce(&g_OnceInitPathConv, rtPathConvInitOnce, NULL); 270 270 if (RT_SUCCESS(rc)) 271 271 {
Note:
See TracChangeset
for help on using the changeset viewer.