summaryrefslogtreecommitdiff
path: root/src/image.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
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) {