From 22baf5d83c43741bf0c94aa503d89f655e061cc3 Mon Sep 17 00:00:00 2001 From: speedie Date: Thu, 10 Aug 2023 11:44:43 +0200 Subject: [PATCH] Remove `remove()` function, it causes issues --- libs/fifo.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/fifo.c b/libs/fifo.c index fe1828d..048b67f 100644 --- a/libs/fifo.c +++ b/libs/fifo.c @@ -197,7 +197,6 @@ void *fifocmd(void *n) { } void init_fifo(void) { - remove(fifofile); mkfifo(fifofile, 0666); pthread_t tid;