diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-02-28 22:44:03 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-02-28 22:44:03 +0000 |
| commit | 32db2da50e2c6d15fd465926386a57c422338226 (patch) | |
| tree | 5ef9fe9aa44fbc7f0eebf48a897c7bc966bc4892 /src/extension/implementation/script.cpp | |
| parent | patch by Horst Schottky for LP 529114 (diff) | |
| download | inkscape-32db2da50e2c6d15fd465926386a57c422338226.tar.gz inkscape-32db2da50e2c6d15fd465926386a57c422338226.zip | |
Fix Windows compile fail after 9118 (oops)
(bzr r9120)
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 7a558b6fc..5eea2d1db 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -156,7 +156,7 @@ Script::resolveInterpreterExecutable(const Glib::ustring &interpNameArg) char szExePath[MAX_PATH]; char szCurrentDir[MAX_PATH]; GetCurrentDirectory(sizeof(szCurrentDir), szCurrentDir); - HINSTANCE ret = (unsigned int)FindExecutable( + HINSTANCE ret = FindExecutable( interpName.c_str(), szCurrentDir, szExePath); if (ret > 32) { interpName = szExePath; |
