From: Krzysztof KosiƄski Date: Sun, 28 Feb 2010 23:06:38 +0000 (+0100) Subject: Really fix the Windows build X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=21234b58f87e7ce63efbca34784c9b03b264568c;p=inkscape.git Really fix the Windows build --- 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; }