Minor changes

This commit is contained in:
Loic Guegan 2023-07-14 22:30:02 +02:00
parent 1770c5f79e
commit c84520472c

View file

@ -10,6 +10,7 @@
#include <unistd.h>
#include <sys/stat.h>
#include "../utils.h"
#include <time.h>
void start(char *power_path, char *busid, char *chipaddr);
@ -42,7 +43,9 @@ void start(char *power_path, char *busid, char *chipaddr){
mkdir(outdir,0755);
char outfile[255];
sprintf(outfile,"%s/%s",outdir,"flk");
time_t timestamp;
timestamp = time(NULL);
sprintf(outfile,"%s/%d",outdir,timestamp);
printf("aa %s\n",outfile);
FILE *f;