Changeset 56978 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Jul 18, 2015 6:55:25 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101690
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r56290 r56978 592 592 static int rtDbgSymCacheAddDebugPdb(const char *pszPath, PCRTDBGSYMCACHEADDCFG pCfg, RTFILE hFile) 593 593 { 594 return RTMsgErrorRc(VERR_NOT_IMPLEMENTED, "PDB support not implemented: '%s'" );594 return RTMsgErrorRc(VERR_NOT_IMPLEMENTED, "PDB support not implemented: '%s'", pszPath); 595 595 } 596 596 … … 1160 1160 1161 1161 case RTDBGSYMCACHEFILETYPE_IGNORE: 1162 rc = RTMsgErrorRc(VERR_INVALID_PARAMETER, "Invalid file: '%s'" );1162 rc = RTMsgErrorRc(VERR_INVALID_PARAMETER, "Invalid file: '%s'", pszPath); 1163 1163 break; 1164 1164 } -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r56290 r56978 398 398 return RTMsgErrorExit(RTEXITCODE_FAILURE, 399 399 "RTVfsChainOpenIoStream failed with rc=%Rrc:\n" 400 " '%s'\n" ,400 " '%s'\n" 401 401 " %*s^\n", 402 402 rc, pszFile, pszError - pszFile, ""); -
trunk/src/VBox/Runtime/tools/RTLdrFlt.cpp
r56290 r56978 307 307 SegInfo.iSeg, SegInfo.szName); 308 308 else 309 RTPrintf(" mapping #%u: %RTptr-???????? (segment #%u)", iMapping, aMappings[iMapping].Address); 309 RTPrintf(" mapping #%u: %RTptr-???????? (segment #%u)", 310 iMapping, aMappings[iMapping].Address, aMappings[iMapping].iSeg); 310 311 } 311 312 … … 381 382 RTStrmPrintf(pOutput, "=[%s:%u", RTDbgModName(hDbgMod), iSeg); 382 383 else 383 RTStrmPrintf(pOutput, "=[%s", RTDbgModName(hDbgMod) , iSeg);384 RTStrmPrintf(pOutput, "=[%s", RTDbgModName(hDbgMod)); 384 385 385 386 /* -
trunk/src/VBox/Runtime/tools/RTManifest.cpp
r56290 r56978 76 76 return RTMsgErrorExit(RTEXITCODE_FAILURE, 77 77 "RTVfsChainOpenIoStream failed with rc=%Rrc:\n" 78 " '%s'\n" ,78 " '%s'\n" 79 79 " %*s^\n", 80 80 rc, pszManifest, pszError - pszManifest, ""); … … 151 151 if (pszError && *pszError) 152 152 RTMsgError("RTVfsChainOpenIoStream failed with rc=%Rrc:\n" 153 " '%s'\n" ,153 " '%s'\n" 154 154 " %*s^\n", 155 155 rc, pszFilename, pszError - pszFilename, ""); … … 161 161 rc = RTManifestEntryAddIoStream(hManifest, hVfsIos, pszFilename, fAttr); 162 162 if (RT_FAILURE(rc)) 163 RTMsgError("RTManifestEntryAddIoStream failed for '%s': %Rrc", rc);163 RTMsgError("RTManifestEntryAddIoStream failed for '%s': %Rrc", pszFilename, rc); 164 164 165 165 RTVfsIoStrmRelease(hVfsIos); … … 207 207 return RTMsgErrorExit(RTEXITCODE_FAILURE, 208 208 "RTVfsChainOpenIoStream failed with rc=%Rrc:\n" 209 " '%s'\n" ,209 " '%s'\n" 210 210 " %*s^\n", 211 211 rc, pszManifest, pszError - pszManifest, ""); -
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r56290 r56978 790 790 RTMsgInfo("Successfully wrote TrustedAnchorInfo to '%s'.", State.pszOutput); 791 791 else 792 RTMsgError("RTStrmClose failed: %Rrc" );792 RTMsgError("RTStrmClose failed: %Rrc", rc); 793 793 } 794 794 else
Note:
See TracChangeset
for help on using the changeset viewer.