Changeset 90780 in vbox for trunk/src/VBox/HostDrivers/Support/solaris
- Timestamp:
- Aug 23, 2021 9:25:17 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146415
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r88169 r90780 862 862 * Some quick validations. 863 863 */ 864 if (RT_UNLIKELY(! VALID_PTR(pReq)))864 if (RT_UNLIKELY(!RT_VALID_PTR(pReq))) 865 865 return VERR_INVALID_POINTER; 866 866 … … 868 868 if (pSession) 869 869 { 870 if (RT_UNLIKELY(! VALID_PTR(pSession)))870 if (RT_UNLIKELY(!RT_VALID_PTR(pSession))) 871 871 return VERR_INVALID_PARAMETER; 872 872 if (RT_UNLIKELY(pSession->pDevExt != &g_DevExt))
Note:
See TracChangeset
for help on using the changeset viewer.