diff options
Diffstat (limited to 'emulators/virtualbox-ose/files/patch-src-VBox-Main-src-client-ConsoleImpl2.cpp')
-rw-r--r-- | emulators/virtualbox-ose/files/patch-src-VBox-Main-src-client-ConsoleImpl2.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/emulators/virtualbox-ose/files/patch-src-VBox-Main-src-client-ConsoleImpl2.cpp b/emulators/virtualbox-ose/files/patch-src-VBox-Main-src-client-ConsoleImpl2.cpp deleted file mode 100644 index 332db3d68e09..000000000000 --- a/emulators/virtualbox-ose/files/patch-src-VBox-Main-src-client-ConsoleImpl2.cpp +++ /dev/null @@ -1,34 +0,0 @@ ---- src/VBox/Main/src-client/ConsoleImpl2.cpp.orig 2015-03-02 10:09:53.000000000 -0500 -+++ src/VBox/Main/src-client/ConsoleImpl2.cpp 2015-03-13 12:49:53.780376000 -0400 -@@ -4447,12 +4447,12 @@ - } - } - -- Assert((int)maTapFD[uInstance] >= 0); -- if ((int)maTapFD[uInstance] >= 0) -+ Assert((intptr_t)maTapFD[uInstance] >= 0); -+ if ((intptr_t)maTapFD[uInstance] >= 0) - { - InsertConfigString(pLunL0, "Driver", "HostInterface"); - InsertConfigNode(pLunL0, "Config", &pCfg); -- InsertConfigInteger(pCfg, "FileHandle", maTapFD[uInstance]); -+ InsertConfigInteger(pCfg, "FileHandle", (intptr_t)maTapFD[uInstance]); - } - - #elif defined(VBOX_WITH_NETFLT) -@@ -4646,12 +4646,12 @@ - } - } - -- Assert((int)maTapFD[uInstance] >= 0); -- if ((int)maTapFD[uInstance] >= 0) -+ Assert((intptr_t)maTapFD[uInstance] >= 0); -+ if ((intptr_t)maTapFD[uInstance] >= 0) - { - InsertConfigString(pLunL0, "Driver", "HostInterface"); - InsertConfigNode(pLunL0, "Config", &pCfg); -- InsertConfigInteger(pCfg, "FileHandle", maTapFD[uInstance]); -+ InsertConfigInteger(pCfg, "FileHandle", (intptr_t)maTapFD[uInstance]); - } - break; - } |