From: VMware, Inc <> Date: Thu, 18 Nov 2010 21:40:05 +0000 (-0800) Subject: Fix build. X-Git-Tag: 2010.11.17-327185~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0a174c8f2134df39ff5f345bba879585d3f2bf4;p=thirdparty%2Fopen-vm-tools.git Fix build. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/services/plugins/unity/ghIntegration/platform.cc b/open-vm-tools/services/plugins/unity/ghIntegration/platform.cc index cf12ff69e..b4f7bd9e2 100644 --- a/open-vm-tools/services/plugins/unity/ghIntegration/platform.cc +++ b/open-vm-tools/services/plugins/unity/ghIntegration/platform.cc @@ -1450,7 +1450,7 @@ GHIPlatformShellOpen(GHIPlatform *ghip, // IN std::vector argv; argv.push_back(unixFile); try { - Glib::spawn_async("" /* inherit cwd */, argv, ghip->nativeEnviron, 0); + Glib::spawn_async("" /* inherit cwd */, argv, ghip->nativeEnviron, (Glib::SpawnFlags) 0); success = TRUE; } catch(Glib::SpawnError& e) { g_warning("%s: %s: %s\n", __func__, unixFile.c_str(), e.what().c_str());