use dprintf() instead of write() calls

This commit is contained in:
Leonardo Hernández Hernández 2022-04-18 09:27:05 -05:00 committed by Raphael Robatsch
parent c6d81febf6
commit ed1e85d804

View file

@ -1,3 +1,4 @@
#define _POSIX_C_SOURCE 200809L
#include<stdlib.h> #include<stdlib.h>
#include<stdio.h> #include<stdio.h>
#include<string.h> #include<string.h>
@ -142,9 +143,7 @@ void psomebar()
return; return;
} }
} }
write(somebarFd, "status ", 7); dprintf(somebarFd, "status %s\n", statusstr[0]);
write(somebarFd, statusstr[0], strlen(statusstr[0]));
write(somebarFd, "\n", 1);
} }