Changeset 30651 in vbox
- Timestamp:
- Jul 6, 2010 9:37:50 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r30112 r30651 272 272 273 273 if (pszErrorMsg) 274 RTStrPrintf(pszErrorMsg, cchErrorMsg, "unknown error");274 RTStrPrintf(pszErrorMsg, cchErrorMsg, N_("unknown error")); 275 275 276 276 /* … … 324 324 # ifdef RT_OS_LINUX 325 325 if (pszErrorMsg) /* Most probably SELinux causing trouble since the larger RTMemAlloc succeeded. */ 326 RTStrPrintf(pszErrorMsg, cchErrorMsg, "mmap(PROT_WRITE | PROT_EXEC) failed -- SELinux?");326 RTStrPrintf(pszErrorMsg, cchErrorMsg, N_("mmap(PROT_WRITE | PROT_EXEC) failed -- SELinux?")); 327 327 # endif 328 328 rc = VERR_NO_MEMORY; … … 393 393 rc = RTFileOpen(&pLogger->File, pLogger->pszFilename, fOpen); 394 394 if (RT_FAILURE(rc) && pszErrorMsg) 395 RTStrPrintf(pszErrorMsg, cchErrorMsg, "could not open file '%s' (fOpen=%#x)", pLogger->pszFilename, fOpen);395 RTStrPrintf(pszErrorMsg, cchErrorMsg, N_("could not open file '%s' (fOpen=%#x)"), pLogger->pszFilename, fOpen); 396 396 } 397 397 #endif /* IN_RING3 */ … … 422 422 423 423 if (pszErrorMsg) 424 RTStrPrintf(pszErrorMsg, cchErrorMsg, "failed to create sempahore");424 RTStrPrintf(pszErrorMsg, cchErrorMsg, N_("failed to create sempahore")); 425 425 } 426 426 #ifdef IN_RING3
Note:
See TracChangeset
for help on using the changeset viewer.