From a232766d01eb1ba6a4fff4e8af2b08a00b2e10a7 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sat, 4 Jul 2015 12:45:43 -0400 Subject: [PATCH] VBOX: Bug fix. --- samples/vboxwrapper/vboxwrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/vboxwrapper/vboxwrapper.cpp b/samples/vboxwrapper/vboxwrapper.cpp index e08c2c7e20..d4918d74dd 100644 --- a/samples/vboxwrapper/vboxwrapper.cpp +++ b/samples/vboxwrapper/vboxwrapper.cpp @@ -468,7 +468,7 @@ int main(int argc, char** argv) { pVM = NULL; } } - if ((5 == vbox_major) && (0 >= vbox_minor)) { + if ((5 == vbox_major) && (0 <= vbox_minor)) { pVM = (VBOX_VM*) new vbox50::VBOX_VM(); retval = pVM->initialize(); if (retval) {