From 6f199dc746bd377223e9bec60467c9060d1048ff Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Sun, 31 Oct 2021 22:16:40 +0000 Subject: Add actual greetd functionality. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Useable, but very barebones — not even any error message reporting. --- src/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/image.c') diff --git a/src/image.c b/src/image.c index 5e8c511..07195c1 100644 --- a/src/image.c +++ b/src/image.c @@ -11,7 +11,7 @@ void image_load(struct image *image, const char *filename) { - log_debug("Loading image %s\n", filename); + log_debug("Loading image '%s'\n", filename); FILE *fp = fopen(filename, "rb"); uint8_t header[HEADER_BYTES]; if (!fp) { -- cgit v1.2.3