implemented deallocateLogger in logger-test

This commit is contained in:
Václav Šmejkal 2022-11-22 18:19:47 +01:00
parent 453a8a1cca
commit f2b059da13
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

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