diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2020-09-27 12:31:16 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2020-09-27 12:31:16 +0200 |
commit | a0add632c1ea61f37f31b717921e96984ca23947 (patch) | |
tree | 379c68210a25c3660dae4d21e3c11e3e2633f96c /main.c | |
parent | baa093bf8e87e246eb9aa10303334a5e94b3c762 (diff) | |
download | wbg-a0add632c1ea61f37f31b717921e96984ca23947.tar.gz |
main: use fprintf() for usage errors
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,5 @@ #include <stdlib.h> +#include <stdio.h> #include <stdbool.h> #include <string.h> #include <poll.h> @@ -312,7 +313,7 @@ int main(int argc, const char *const *argv) { if (argc < 2) { - LOG_ERR("missing required argument: image path"); + fprintf(stderr, "error: missing required argument: image path\n"); return EXIT_FAILURE; } @@ -328,7 +329,7 @@ main(int argc, const char *const *argv) image = png_load(image_path); #endif if (image == NULL) { - LOG_ERR("%s: failed to load", image_path); + fprintf(stderr, "error: %s: failed to load\n", image_path); return EXIT_FAILURE; } |