1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Minor clean-ups and fix for posix WaitableEvent.

This commit is contained in:
Julian Storer 2010-03-16 19:51:58 +00:00
parent 2b06e4f6d9
commit 7228c6b593
13 changed files with 329 additions and 321 deletions

View file

@ -417,7 +417,7 @@ bool juce_launchFile (const String& fileName,
cmdString = cmdLines.joinIntoString (T(" || "));
}
const char* const argv[4] = { "/bin/sh", "-c", (const char*) cmdString.toUTF8(), 0 };
const char* const argv[4] = { "/bin/sh", "-c", cmdString.toUTF8(), 0 };
const int cpid = fork();