From 4224cb1d6c5cfa267095213d6a69c408d2adbe82 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 2 Feb 2024 13:19:35 +0100 Subject: [PATCH] Minor changes --- src/publisher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/publisher.c b/src/publisher.c index 309cf6b..769ff27 100644 --- a/src/publisher.c +++ b/src/publisher.c @@ -40,6 +40,7 @@ void askforbreak(){ FILE * file; file = fopen(__break_file, "r"); while(file){ + printf("I am doing a break for %ds", BREAK_DURATION); usleep(BREAK_DURATION * 1000); fclose(file); file = fopen(__break_file, "r");