diff options
Diffstat (limited to 'src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp')
-rw-r--r-- | src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp b/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp index 9d31b7f58..0fd899817 100644 --- a/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp +++ b/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp @@ -1,4 +1,4 @@ -/* $Id: SUPLib-linux.cpp $ */ +/* $Id: SUPLib-linux.cpp 37596 2011-06-22 19:30:06Z vboxsync $ */ /** @file * VirtualBox Support Library - GNU/Linux specific parts. */ @@ -78,7 +78,7 @@ int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited) */ if (fPreInited) return VINF_SUCCESS; - Assert(pThis->hDevice == NIL_RTFILE); + Assert(pThis->hDevice == (intptr_t)NIL_RTFILE); /* * Check if madvise works. @@ -144,11 +144,11 @@ int suplibOsTerm(PSUPLIBDATA pThis) /* * Close the device if it's actually open. */ - if (pThis->hDevice != NIL_RTFILE) + if (pThis->hDevice != (intptr_t)NIL_RTFILE) { if (close(pThis->hDevice)) AssertFailed(); - pThis->hDevice = NIL_RTFILE; + pThis->hDevice = (intptr_t)NIL_RTFILE; } return 0; @@ -171,7 +171,7 @@ int suplibOsUninstall(void) int suplibOsIOCtl(PSUPLIBDATA pThis, uintptr_t uFunction, void *pvReq, size_t cbReq) { - AssertMsg(pThis->hDevice != NIL_RTFILE, ("SUPLIB not initiated successfully!\n")); + AssertMsg(pThis->hDevice != (intptr_t)NIL_RTFILE, ("SUPLIB not initiated successfully!\n")); /* * Issue device iocontrol. |