Changeset 13816 in vbox for trunk/src/VBox/VMM/STAM.cpp
- Timestamp:
- Nov 4, 2008 10:52:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/STAM.cpp
r13598 r13816 250 250 { 251 251 int rc = DBGCRegisterCommands(&g_aCmds[0], RT_ELEMENTS(g_aCmds)); 252 if ( VBOX_SUCCESS(rc))252 if (RT_SUCCESS(rc)) 253 253 fRegisteredCmds = true; 254 254 } … … 898 898 stamR3SnapshotPrintf(&State, "</Statistics>\n"); 899 899 900 if ( VBOX_SUCCESS(rc))900 if (RT_SUCCESS(rc)) 901 901 rc = State.rc; 902 902 else … … 1889 1889 */ 1890 1890 int rc = STAMR3ResetU(pUVM, cArgs ? paArgs[0].u.pszString : NULL); 1891 if ( VBOX_SUCCESS(rc))1891 if (RT_SUCCESS(rc)) 1892 1892 return pCmdHlp->pfnPrintf(pCmdHlp, NULL, "info: Statistics reset.\n"); 1893 1893
Note:
See TracChangeset
for help on using the changeset viewer.