Use cairo_status_to_string for descriptive errors.

pull/1/head
Bas Pape 2013-07-30 20:03:19 +02:00 committed by Michael Stapelberg
parent a72e0de842
commit 3e136769be
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}