aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2020-09-27 12:31:16 +0200
committerDaniel Eklöf <daniel@ekloef.se>2020-09-27 12:31:16 +0200
commita0add632c1ea61f37f31b717921e96984ca23947 (patch)
tree379c68210a25c3660dae4d21e3c11e3e2633f96c /main.c
parentbaa093bf8e87e246eb9aa10303334a5e94b3c762 (diff)
downloadwbg-a0add632c1ea61f37f31b717921e96984ca23947.tar.gz
main: use fprintf() for usage errors
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c
index 91ce9e1..6f8192e 100644
--- a/main.c
+++ b/main.c
@@ -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;
}