From cab15f605ef02eeea413f9db45d2ffa7f3d0172e Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 2 Feb 2024 13:31:17 +0100 Subject: [PATCH] Minor changes --- src/publisher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/publisher.c b/src/publisher.c index 36bc36b..a16628a 100644 --- a/src/publisher.c +++ b/src/publisher.c @@ -38,7 +38,7 @@ void askforbreak(char *break_file){ file = fopen(break_file, "r"); while(file){ printf("I am doing a break for %ds\n", BREAK_DURATION); - usleep(BREAK_DURATION * 1000000); + sleep(BREAK_DURATION); fclose(file); file = fopen(break_file, "r"); }