Changeset 37596 in vbox for trunk/src/VBox/HostDrivers/Support/darwin
- Timestamp:
- Jun 22, 2011 7:30:06 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72442
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp
r33540 r37596 194 194 * Do the job. 195 195 */ 196 Assert(pThis->hDevice == NIL_RTFILE);196 Assert(pThis->hDevice == (intptr_t)NIL_RTFILE); 197 197 int rc = suplibDarwinOpenService(pThis); 198 198 if (RT_SUCCESS(rc)) … … 237 237 * Check if we're inited at all. 238 238 */ 239 if (pThis->hDevice != NIL_RTFILE)239 if (pThis->hDevice != (intptr_t)NIL_RTFILE) 240 240 { 241 241 if (close(pThis->hDevice)) 242 242 AssertFailed(); 243 pThis->hDevice = NIL_RTFILE;243 pThis->hDevice = (intptr_t)NIL_RTFILE; 244 244 } 245 245
Note:
See TracChangeset
for help on using the changeset viewer.