diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-02-28 23:06:38 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-02-28 23:06:38 +0000 |
| commit | e85a9da0c5084ee2cf8c59cdb7d7d5644482072f (patch) | |
| tree | da9be48443f06c3aef2389f40a7e0ab87bfe8e6b /src/extension/implementation/script.cpp | |
| parent | Fix Windows compile fail after 9118 (oops) (diff) | |
| download | inkscape-e85a9da0c5084ee2cf8c59cdb7d7d5644482072f.tar.gz inkscape-e85a9da0c5084ee2cf8c59cdb7d7d5644482072f.zip | |
Really fix the Windows build
(bzr r9121)
Diffstat (limited to 'src/extension/implementation/script.cpp')
| -rw-r--r-- | src/extension/implementation/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
