Changeset 37596 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- 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/os2/SUPLib-os2.cpp
r33540 r37596 100 100 } 101 101 102 pThis->hDevice = (RTFILE)hDevice;102 pThis->hDevice = hDevice; 103 103 return VINF_SUCCESS; 104 104 } … … 112 112 * Check if we're inited at all. 113 113 */ 114 if (pThis->hDevice != NIL_RTFILE)114 if (pThis->hDevice != (intptr_t)NIL_RTFILE) 115 115 { 116 116 APIRET rc = DosClose((HFILE)pThis->hDevice); 117 117 AssertMsg(rc == NO_ERROR, ("%d\n", rc)); NOREF(rc); 118 pThis->hDevice = NIL_RTFILE;118 pThis->hDevice = (intptr_t)NIL_RTFILE; 119 119 } 120 120
Note:
See TracChangeset
for help on using the changeset viewer.