aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-11 00:01:09 -0800
committerPaul Eggert2011-03-11 00:01:09 -0800
commit2037898d7ada760ef84df072d05addf826710f65 (patch)
tree2ab5d3afa4a7e631bbbea60e50b81a89e3959158 /src/image.c
parent77a765fd789f80afbe170bf640794a4b25968ea6 (diff)
downloademacs-2037898d7ada760ef84df072d05addf826710f65.tar.gz
emacs-2037898d7ada760ef84df072d05addf826710f65.zip
* image.c (gif_load): Fix pointer signedness.
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 810bd4be989..383e154b265 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7127,7 +7127,7 @@ gif_load (struct frame *f, struct image *img)
7127 } 7127 }
7128 7128
7129 /* Open the GIF file. */ 7129 /* Open the GIF file. */
7130 gif = fn_DGifOpenFileName (SDATA (file)); 7130 gif = fn_DGifOpenFileName (SSDATA (file));
7131 if (gif == NULL) 7131 if (gif == NULL)
7132 { 7132 {
7133 image_error ("Cannot open `%s'", file, Qnil); 7133 image_error ("Cannot open `%s'", file, Qnil);