diff options
author | Bill Spitzak <spitzak@gmail.com> | 2014-08-19 18:13:11 -0700 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2014-09-11 13:11:29 +0300 |
commit | 5e3b693a117e227e21df1826fcfe4baf2e01c08a (patch) | |
tree | 40474ba80a0173f49e59ab009a93f8c01248d6a1 | |
parent | 28371f7d55ba3468bd3baa06cbab9c82b4842ade (diff) | |
download | weston-5e3b693a117e227e21df1826fcfe4baf2e01c08a.tar.gz weston-5e3b693a117e227e21df1826fcfe4baf2e01c08a.tar.bz2 weston-5e3b693a117e227e21df1826fcfe4baf2e01c08a.zip |
image: don't print redundant error
This error is printed by load_image() now
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r-- | clients/image.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clients/image.c b/clients/image.c index 573117ca..aee81122 100644 --- a/clients/image.c +++ b/clients/image.c @@ -373,7 +373,6 @@ image_create(struct display *display, const char *filename, image->image = load_cairo_surface(filename); if (!image->image) { - fprintf(stderr, "could not find the image %s!\n", b); free(image->filename); free(image); return NULL; |