From 21234b58f87e7ce63efbca34784c9b03b264568c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Krzysztof=20Kosi=C5=84ski?= Date: Mon, 1 Mar 2010 00:06:38 +0100 Subject: [PATCH] Really fix the Windows build --- src/extension/implementation/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index 5eea2d1db..cd25d593a 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -158,7 +158,7 @@ Script::resolveInterpreterExecutable(const Glib::ustring &interpNameArg) GetCurrentDirectory(sizeof(szCurrentDir), szCurrentDir); HINSTANCE ret = FindExecutable( interpName.c_str(), szCurrentDir, szExePath); - if (ret > 32) { + if (((unsigned long) ret) > 32) { interpName = szExePath; return interpName; } -- 2.30.2