Changeset 34286 in vbox
- Timestamp:
- Nov 23, 2010 3:19:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r34241 r34286 566 566 /* Don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY above as these are very unlikely. */ 567 567 if (RT_FAILURE(rc) && szErr[0]) 568 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load GC module %s: %s"), pszFilename, szErr);568 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load RC module %s: %s"), pszFilename, szErr); 569 569 else if (RT_FAILURE(rc)) 570 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load GC module %s"), pszFilename);570 rc = VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load RC module %s"), pszFilename); 571 571 572 572 RTMemFree(pModule);
Note:
See TracChangeset
for help on using the changeset viewer.