From b3735501c7952ec53600f94d90ae8e164300ca76 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Fri, 11 Jul 2014 16:49:10 +0200 Subject: [PATCH] Fix compatibility issue with 64-bit cygwin. --- src/support/os_cygwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/os_cygwin.cpp b/src/support/os_cygwin.cpp index e0c0bd17a0..572273ce2c 100644 --- a/src/support/os_cygwin.cpp +++ b/src/support/os_cygwin.cpp @@ -449,7 +449,7 @@ bool autoOpenFile(string const & filename, auto_open_mode const mode, // reference: http://msdn.microsoft.com/en-us/library/bb762153.aspx string const win_path = to_local8bit(from_utf8(convert_path(filename, PathStyle(windows)))); char const * action = (mode == VIEW) ? "open" : "edit"; - bool success = reinterpret_cast(ShellExecute(NULL, action, + bool success = reinterpret_cast(ShellExecute(NULL, action, win_path.c_str(), NULL, NULL, 1)) > 32; if (!path.empty() && !lyxrc.texinputs_prefix.empty()) { -- 2.39.5