diff options
| author | Artem Varaksa | 2018-02-17 16:00:39 +0300 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-02-22 12:22:41 +0100 |
| commit | eacd66e78431354d0cce21e07c791aeb2206cef6 (patch) | |
| tree | cd2b0479313452fab6bd4c184280b4b369db355c /drivers/unix/os_unix.cpp | |
| parent | b5f8c1a53b30c459a5fe9ce649b3293a68c99407 (diff) | |
| download | godot-eacd66e78431354d0cce21e07c791aeb2206cef6.tar.gz godot-eacd66e78431354d0cce21e07c791aeb2206cef6.tar.zst godot-eacd66e78431354d0cce21e07c791aeb2206cef6.zip | |
Diffstat (limited to 'drivers/unix/os_unix.cpp')
| -rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index 5f45f06c7..aa01f2267 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -296,7 +296,7 @@ Error OS_Unix::execute(const String &p_path, const List<String> &p_arguments, bo Vector<char *> args; for (int i = 0; i < cs.size(); i++) - args.push_back((char *)cs[i].get_data()); // shitty C cast + args.push_back((char *)cs[i].get_data()); args.push_back(0); execvp(p_path.utf8().get_data(), &args[0]); |
