aboutsummaryrefslogtreecommitdiffstats
path: root/src/jpeg.c
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2008-06-16 16:15:54 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2008-06-16 16:15:54 -0700
commit0e03461ca2c584cacda2647b68d2eb8b0c34c216 (patch)
treec1253a7951df53678e16dd981ac4cc0940703932 /src/jpeg.c
parentd1ea7c8e8f53dd1885ca2c8b951089cdbee3f180 (diff)
downloadmirror-meh-0e03461ca2c584cacda2647b68d2eb8b0c34c216.tar.gz
mirror-meh-0e03461ca2c584cacda2647b68d2eb8b0c34c216.tar.bz2
mirror-meh-0e03461ca2c584cacda2647b68d2eb8b0c34c216.zip
changed all formats to use struct image
Diffstat (limited to 'src/jpeg.c')
-rw-r--r--src/jpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jpeg.c b/src/jpeg.c
index 68efa39..db36a8b 100644
--- a/src/jpeg.c
+++ b/src/jpeg.c
@@ -99,7 +99,7 @@ static int jpeg_read(struct image *img){
return 0;
}
-struct imageformat jpeg = {
+struct imageformat libjpeg = {
jpeg_open,
jpeg_read
};