aboutsummaryrefslogtreecommitdiffstats
path: root/src/gif.c
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2009-08-31 00:36:38 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2009-08-31 00:36:38 -0700
commitd75be522869a2430355dfe83a96624f39a8fb370 (patch)
tree03502d51fd04c8c810229ab15151da781f4cb7ab /src/gif.c
parent866ca6e02121344a1af5324579521eadda5ae243 (diff)
downloadmirror-meh-d75be522869a2430355dfe83a96624f39a8fb370.tar.gz
mirror-meh-d75be522869a2430355dfe83a96624f39a8fb370.tar.bz2
mirror-meh-d75be522869a2430355dfe83a96624f39a8fb370.zip
experimental support for imagemagick backend
Diffstat (limited to 'src/gif.c')
-rw-r--r--src/gif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gif.c b/src/gif.c
index 17e5d4d..8887efd 100644
--- a/src/gif.c
+++ b/src/gif.c
@@ -45,6 +45,8 @@ static struct image *gif_open(FILE *f){
g->img.bufwidth = gif->SWidth;
g->img.bufheight = gif->SHeight;
+ g->img.fmt = &giflib;
+
return (struct image *)g;
}