summaryrefslogtreecommitdiffstats
path: root/drivers/unix/os_unix.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-02-17 16:19:50 +0100
committerGitHub <noreply@github.com>2018-02-17 16:19:50 +0100
commitd05d4c2bddff05967c8d59137e5c13b576f7cb51 (patch)
tree373b6abb4e4a15befea66446841c16ce5541535b /drivers/unix/os_unix.cpp
parent3d4bf5a90e9b32c6c93647c7fa08785b22cd5442 (diff)
parentd35e48622800f6686dbdfba380e25170005dcc2b (diff)
downloadredot-engine-d05d4c2bddff05967c8d59137e5c13b576f7cb51.tar.gz
Merge pull request #16776 from sudoio/remove-bad-words
Clean up some bad words from code comments
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r--drivers/unix/os_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp
index 5f45f06c79..aa01f22673 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]);