Changeset 25254 in vbox
- Timestamp:
- Dec 8, 2009 6:28:25 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstPDMAsyncCompletion.cpp
r23973 r25254 122 122 * Create the temporary buffers. 123 123 */ 124 int i; 125 126 for (i=0; i < NR_TASKS; i++) 124 for (unsigned i=0; i < NR_TASKS; i++) 127 125 { 128 126 g_AsyncCompletionTasksBuffer[i] = (uint8_t *)RTMemAllocZ(BUFFER_SIZE); … … 130 128 { 131 129 RTPrintf(TESTCASE ": out of memory!\n"); 132 rcRet++; 133 return rcRet; 130 return ++rcRet; 134 131 } 135 132 } … … 141 138 { 142 139 RTPrintf(TESTCASE ": Error while creating the destination!! rc=%d\n", rc); 143 return 1; 144 rcRet++; 145 return rcRet; 140 return ++rcRet; 146 141 } 147 142 RTFileClose(FileTmp);
Note:
See TracChangeset
for help on using the changeset viewer.