summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBas Pape <baspape@gmail.com>2013-07-30 20:03:19 +0200
committerMichael Stapelberg <michael@stapelberg.de>2013-07-30 20:08:21 +0200
commit3e136769beae3ef13ce492d341dbf3ff32c87ec9 (patch)
treecb6b841d5ea726206fefa2a747a20ac6f97c88d7
parenta72e0de8427938cd50fdfd42fe2d0823518315a9 (diff)
Use cairo_status_to_string for descriptive errors.
-rw-r--r--i3lock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i3lock.c b/i3lock.c
index 5a87999..e5654d6 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -657,8 +657,8 @@ int main(int argc, char *argv[]) {
img = cairo_image_surface_create_from_png(image_path);
/* In case loading failed, we just pretend no -i was specified. */
if (cairo_surface_status(img) != CAIRO_STATUS_SUCCESS) {
- fprintf(stderr, "Could not load image \"%s\": cairo surface status %d\n",
- image_path, cairo_surface_status(img));
+ fprintf(stderr, "Could not load image \"%s\": %s\n",
+ image_path, cairo_status_to_string(cairo_surface_status(img)));
img = NULL;
}
}