From 8e8998c7e7db2824578d467459dd9828a1c3f4ff Mon Sep 17 00:00:00 2001 From: depsterr Date: Sun, 6 Jun 2021 04:37:23 +0200 Subject: [PATCH] use warn instead of printf for no image warning --- mpdart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpdart.c b/mpdart.c index 4e2208b..02d3f6e 100644 --- a/mpdart.c +++ b/mpdart.c @@ -196,7 +196,7 @@ void imlib_render(void) { DEBUG("Rendering image\n"); if (!im_image || !im_image_path) { - printf("No image to render\n"); + warn("No image to render"); return; }