Changeset 50695 in vbox
- Timestamp:
- Mar 5, 2014 10:12:20 AM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostBase.cpp
r49104 r50695 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 873 873 { 874 874 strcpy(szName1, *pszVendor ? pszVendor : pszProduct); 875 RTStrPrintf(szName2, sizeof(szName2), "%s %s(#%u)", *pszVendor ? pszVendor : pszProduct, i);875 RTStrPrintf(szName2, sizeof(szName2), "%s (#%u)", *pszVendor ? pszVendor : pszProduct, i); 876 876 } 877 877 } -
trunk/src/VBox/Main/src-server/darwin/iokit.cpp
r48955 r50695 9 9 10 10 /* 11 * Copyright (C) 2006-201 2Oracle Corporation11 * Copyright (C) 2006-2014 Oracle Corporation 12 12 * 13 13 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1355 1355 RTStrPrintf(szName, sizeof(szName), "%s %s (#%u)", pszVendor, pszProduct, i); 1356 1356 else 1357 RTStrPrintf(szName, sizeof(szName), "%s %s(#%u)", *pszVendor ? pszVendor : pszProduct, i);1357 RTStrPrintf(szName, sizeof(szName), "%s (#%u)", *pszVendor ? pszVendor : pszProduct, i); 1358 1358 break; 1359 1359 } -
trunk/src/VBox/VMM/testcase/tstVMMFork.cpp
r44528 r50695 5 5 6 6 /* 7 * Copyright (C) 2006-201 3Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 140 140 141 141 if (rcErrors > 0) 142 RTPrintf(TESTCASE ": error: %d error(s) during fork(). Cannot proceed to test the VM.\n" );142 RTPrintf(TESTCASE ": error: %d error(s) during fork(). Cannot proceed to test the VM.\n", rcErrors); 143 143 else 144 144 RTPrintf(TESTCASE ": fork() and VM test, SUCCESS.\n");
Note:
See TracChangeset
for help on using the changeset viewer.