1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Remove some unused variables

This commit is contained in:
Johan Manuel
2016-07-26 15:04:16 +02:00
parent 8c0a050d49
commit 046f94d3ac
9 changed files with 12 additions and 22 deletions

View File

@@ -390,7 +390,7 @@ Error OS_Unix::execute(const String& p_path, const List<String>& p_arguments,boo
if (p_blocking) {
int status;
pid_t rpid = waitpid(pid,&status,0);
waitpid(pid,&status,0);
if (r_exitcode)
*r_exitcode=WEXITSTATUS(status);
} else {