Minor changes

This commit is contained in:
Loïc Guégan 2024-02-02 13:28:00 +01:00
parent 45e5483b1b
commit 9a34bc1d03

View file

@ -37,8 +37,8 @@ void askforbreak(char *break_file){
FILE * file;
file = fopen(break_file, "r");
while(file){
printf("I am doing a break for %ds", BREAK_DURATION);
usleep(BREAK_DURATION * 1000);
printf("I am doing a break for %ds\n", BREAK_DURATION);
usleep(BREAK_DURATION * 1000000);
fclose(file);
file = fopen(break_file, "r");
}