mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
dup is marked as warn-unused-result
This commit is contained in:
parent
d4b0e1f588
commit
4c4aa5534c
1 changed files with 3 additions and 3 deletions
6
test.c
6
test.c
|
@ -116,9 +116,9 @@ FILE ** task_popen(const char *command, const char *mode) {
|
||||||
close(errhandle[0]);
|
close(errhandle[0]);
|
||||||
|
|
||||||
/* see piping documentation for this sillyness :P */
|
/* see piping documentation for this sillyness :P */
|
||||||
close(0), dup(inhandle [0]);
|
close(0); (void)!dup(inhandle [0]);
|
||||||
close(1), dup(outhandle[1]);
|
close(1); (void)!dup(outhandle[1]);
|
||||||
close(2), dup(errhandle[1]);
|
close(2); (void)!dup(errhandle[1]);
|
||||||
|
|
||||||
execvp(*argv, argv);
|
execvp(*argv, argv);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
Loading…
Reference in a new issue