suppression de `-Werror' des drapeaux de compilation

This commit is contained in:
COLIN Cyril 2019-11-13 13:11:16 +01:00
parent 3a6c3a9753
commit 8b350efed2
2 changed files with 1 additions and 4 deletions

View File

@ -1,4 +1,4 @@
CC := gcc -Wall -Wextra -Wpedantic -Werror -Wshadow=local -Iinclude -Isrc -g -std=c11
CC := gcc -Wall -Wextra -Wpedantic -Wshadow=local -Iinclude -Isrc -g -std=c11
# pkg-config
# LIBS :=

View File

@ -122,9 +122,6 @@ int ext_in(const char addr[], int port) {
void ext_bidir(const char addr[], int port, int in, int out) {
(void) in;
(void) out;
pid_t pid = fork();
if (pid == 0) {
ext_in(addr, port);