added missing initLogger deallocation

I forgor
This commit is contained in:
Václav Šmejkal 2022-11-21 11:53:53 +00:00
parent 091fe43bb2
commit 6862a1815f

View File

@ -1,6 +1,7 @@
#include <why2.h> #include <why2.h>
#include <stdio.h> #include <stdio.h>
#include <unistd.h>
int main(void) int main(void)
{ {
@ -8,5 +9,6 @@ int main(void)
printf("%d\n", test); printf("%d\n", test);
close(test);
return 0; return 0;
} }