mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-12-18 08:22:13 +00:00
19 lines
570 B
Diff
19 lines
570 B
Diff
|
diff --git a/test.c b/test.c
|
||
|
index 0af7477..7722af2 100644
|
||
|
--- a/test.c
|
||
|
+++ b/test.c
|
||
|
@@ -116,9 +116,9 @@ FILE ** task_popen(const char *command, const char *mode) {
|
||
|
close(errhandle[0]);
|
||
|
|
||
|
/* see piping documentation for this sillyness :P */
|
||
|
- close(0), dup(inhandle [0]);
|
||
|
- close(1), dup(outhandle[1]);
|
||
|
- close(2), dup(errhandle[1]);
|
||
|
+ close(0); (void)!dup(inhandle [0]);
|
||
|
+ close(1); (void)!dup(outhandle[1]);
|
||
|
+ close(2); (void)!dup(errhandle[1]);
|
||
|
|
||
|
execvp(*argv, argv);
|
||
|
exit(EXIT_FAILURE);
|
||
|
|