summaryrefslogtreecommitdiff
path: root/graphics/imlib/files/patch-PrintGifError
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/imlib/files/patch-PrintGifError')
-rw-r--r--graphics/imlib/files/patch-PrintGifError21
1 files changed, 0 insertions, 21 deletions
diff --git a/graphics/imlib/files/patch-PrintGifError b/graphics/imlib/files/patch-PrintGifError
deleted file mode 100644
index 45eb482801f9..000000000000
--- a/graphics/imlib/files/patch-PrintGifError
+++ /dev/null
@@ -1,21 +0,0 @@
---- Imlib/load.c-orig 2012-06-16 20:19:27.000000000 +0200
-+++ Imlib/load.c 2012-06-16 20:19:56.000000000 +0200
-@@ -420,6 +420,18 @@
- #endif /* HAVE_LIBTIFF */
-
- #ifdef HAVE_LIBGIF
-+
-+static void
-+PrintGifError(void)
-+{
-+ char *Err = GifErrorString();
-+
-+ if (Err != NULL)
-+ fprintf(stderr, "\nGIF-LIB error: %s.\n", Err);
-+ else
-+ fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError());
-+}
-+
- unsigned char *
- _LoadGIF(ImlibData * id, FILE *f, int *w, int *h, int *t)
- {