Changeset 13816 in vbox for trunk/src/VBox/VMM/testcase/tstVMMFork.cpp
- Timestamp:
- Nov 4, 2008 10:52:12 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38807
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstVMMFork.cpp
r13782 r13816 72 72 PVM pVM; 73 73 int rc = VMR3Create(1, NULL, NULL, NULL, NULL, &pVM); 74 if ( VBOX_SUCCESS(rc))74 if (RT_SUCCESS(rc)) 75 75 { 76 76 /* … … 154 154 */ 155 155 rc = VMR3Destroy(pVM); 156 if (! VBOX_SUCCESS(rc))156 if (!RT_SUCCESS(rc)) 157 157 { 158 158 RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%d\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.