Changeset 3970 in vbox for trunk/src/VBox/HostServices/SharedFolders
- Timestamp:
- Aug 1, 2007 3:31:26 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23389
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
r3968 r3970 239 239 } 240 240 } 241 Assert(VBOX_SUCCESS(rc)); 241 if (VBOX_FAILURE(rc)) 242 Log(("vbsfCorrectCasing %s failed with %d\n", pszStartComponent, rc)); 242 243 243 244 end: … … 349 350 src = end + 1; 350 351 } 351 Assert(rc == VINF_SUCCESS); 352 if (VBOX_FAILURE(rc)) 353 Log(("Unable to find suitable component rc=%d\n", rc)); 352 354 } 353 355 else -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r3969 r3970 148 148 } 149 149 } 150 Assert(VBOX_SUCCESS(rc)); 150 if (VBOX_FAILURE(rc)) 151 Log(("vbsfCorrectCasing %s failed with %d\n", pszStartComponent, rc)); 151 152 152 153 end: … … 402 403 src = end + 1; 403 404 } 404 Assert(rc == VINF_SUCCESS); 405 if (VBOX_FAILURE(rc)) 406 Log(("Unable to find suitable component rc=%d\n", rc)); 405 407 } 406 408 else
Note:
See TracChangeset
for help on using the changeset viewer.