Changeset 59117 in vbox for trunk/src/VBox/Main/src-server/freebsd
- Timestamp:
- Dec 14, 2015 2:04:37 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104688
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/freebsd/USBProxyBackendFreeBSD.cpp
r59116 r59117 72 72 * @returns S_OK on success and non-fatal failures, some COM error otherwise. 73 73 */ 74 HRESULTUSBProxyServiceFreeBSD::init(void)74 int USBProxyServiceFreeBSD::init(void) 75 75 { 76 76 /* … … 79 79 int rc = RTSemEventCreate(&mNotifyEventSem); 80 80 if (RT_FAILURE(rc)) 81 { 82 mLastError = rc; 83 return E_FAIL; 84 } 81 return rc; 85 82 86 83 /* … … 88 85 */ 89 86 start(); 90 return S_OK;87 return VINF_SUCCESS; 91 88 } 92 89
Note:
See TracChangeset
for help on using the changeset viewer.