commit e593be39c1150bb8330ab741141810b4130aedd2
parent bd26166e4ae7b46e3edffe0a5c3572acbde160c6
Author: Friedel Schön <[email protected]>
Date: Mon, 29 May 2023 18:37:21 +0200
fixing debug messages
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -11,7 +11,7 @@ ROFF_DIR := man
# Compiler Options
CC ?= clang
-CFLAGS += -I$(INCLUDE_DIR) -DVERSION=\"$(VERSION)\" -g -std=gnu99 -Werror -Wpedantic -Wpedantic -Wno-gnu-zero-variadic-macro-arguments
+CFLAGS += -I$(INCLUDE_DIR) -DVERSION=\"$(VERSION)\" -g -std=gnu99 -Wall -Wextra -Wpedantic -Wno-gnu-zero-variadic-macro-arguments
LDFLAGS += -fPIE
SED ?= sed
diff --git a/src/supervise.c b/src/supervise.c
@@ -75,7 +75,6 @@ static void control_sockets(void) {
for (int i = 0; i < services_size; i++) {
s = &services[i];
- printf("%s reading from %d\n", s->name, s->control);
while (read(s->control, &chr, 1) == 1) {
printf("handling '%c' from %s\n", chr, s->name);
if (read_signo) {