Changeset 39181 in vbox
- Timestamp:
- Nov 2, 2011 9:50:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTManifest.cpp
r38636 r39181 150 150 { 151 151 if (pszError && *pszError) 152 return RTMsgErrorExit(RTEXITCODE_FAILURE,153 "RTVfsChainOpenIoStream failed with rc=%Rrc:\n"154 " '%s'\n",155 " %*s^\n",156 rc, pszFilename, pszError - pszFilename, "");157 return RTMsgErrorExit(RTEXITCODE_FAILURE,158 "Failed with %Rrc opening '%s'", rc, pszFilename);152 RTMsgError("RTVfsChainOpenIoStream failed with rc=%Rrc:\n" 153 " '%s'\n", 154 " %*s^\n", 155 rc, pszFilename, pszError - pszFilename, ""); 156 else 157 RTMsgError("Failed with %Rrc opening '%s'", rc, pszFilename); 158 return rc; 159 159 } 160 160 … … 242 242 chOpt = RTGetOpt(pGetState, pUnion); 243 243 } 244 if (RT_SUCCESS(rc) && 244 if (RT_SUCCESS(rc) && chOpt != 0) 245 245 { 246 246 RTGetOptPrintError(chOpt, pUnion);
Note:
See TracChangeset
for help on using the changeset viewer.