Changeset 62725 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Jul 30, 2016 12:13:16 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109299
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTNtDbgHelp.cpp
r62592 r62725 211 211 case SymDia: return "SymDia"; 212 212 case SymVirtual: return "SymVirtual"; 213 } 214 static char s_szBuf[32]; 215 RTStrPrintf(s_szBuf, sizeof(s_szBuf), "Unknown-%#x", enmType); 216 return s_szBuf; 213 default: 214 { 215 static char s_szBuf[32]; 216 RTStrPrintf(s_szBuf, sizeof(s_szBuf), "Unknown-%#x", enmType); 217 return s_szBuf; 218 } 219 } 217 220 } 218 221 … … 320 323 321 324 RTEXITCODE rcExit = RTEXITCODE_SUCCESS; 322 const char *pszOutput = "-";325 //const char *pszOutput = "-"; 323 326 324 327 int ch;
Note:
See TracChangeset
for help on using the changeset viewer.