diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2024-02-02 13:19:35 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2024-02-02 13:19:35 +0100 |
| commit | 4224cb1d6c5cfa267095213d6a69c408d2adbe82 (patch) | |
| tree | 09d2864b62d837f9c24022c484249d4f2521ac75 | |
| parent | 72d6ef9ec6893f98630e46c70cf8cefba4c4fa80 (diff) | |
Minor changes
| -rw-r--r-- | src/publisher.c | 1 |
1 files changed, 1 insertions, 0 deletions
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"); |
