Changeset 16546 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 6, 2009 1:07:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r16161 r16546 60 60 #include <iprt/alloc.h> 61 61 #include <iprt/string.h> 62 #include <iprt/err.h> 62 63 63 64 … … 230 231 rc = mod_install(&g_VBoxDrvSolarisModLinkage); 231 232 if (!rc) 232 return 0; /* success */233 return rc; /* success */ 233 234 234 235 ddi_soft_state_fini(&g_pVBoxDrvSolarisState); … … 253 254 memset(&g_DevExt, 0, sizeof(g_DevExt)); 254 255 255 return -1;256 return RTErrConvertToErrno(rc); 256 257 } 257 258
Note:
See TracChangeset
for help on using the changeset viewer.