Minor changes

This commit is contained in:
Loic Guegan 2023-07-14 22:09:39 +02:00
parent a049e4b17e
commit af1b88d8fc
2 changed files with 3 additions and 1 deletions

BIN
logger

Binary file not shown.

View file

@ -8,7 +8,8 @@
#include <string.h>
#include <libgen.h>
#include <unistd.h>
#include <sys/stat.h>
#include "../utils.h"
void start(char *power_path);
@ -35,4 +36,5 @@ void start(char *power_path){
printf("Could not read %s\n",power_path);
exit(2);
}
mkdir(STRINGIFY(LOGGER_DIR),0755);
}