summaryrefslogtreecommitdiff
path: root/src/jpeg.c
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-04 18:50:29 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-04 18:50:29 +0100
commitf5decdf48e13d89f133c27e9e8b77c5e04aa4bbd (patch)
tree8a465ed37366c4658ea377544f314a1b7e12e76c /src/jpeg.c
parent816b74acd5396ef095e57909305881c6094e1dce (diff)
parentac3bab6219c73fef181f120e11d9d2c07ba848c3 (diff)
merge
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 c495dbbe..4da2d39e 100644
--- a/src/jpeg.c
+++ b/src/jpeg.c
@@ -84,7 +84,6 @@ typedef struct DilloJpeg {
static DilloJpeg *Jpeg_new(DilloImage *Image, DilloUrl *url, int version);
static void Jpeg_callback(int Op, CacheClient_t *Client);
static void Jpeg_write(DilloJpeg *jpeg, void *Buf, uint_t BufSize);
-static void Jpeg_close(DilloJpeg *jpeg, CacheClient_t *Client);
METHODDEF(void) Jpeg_errorexit (j_common_ptr cinfo);
/* exported function */
@@ -140,6 +139,7 @@ void *a_Jpeg_image(const char *Type, void *P, CA_Callback_t *Call,
*/
static void Jpeg_close(DilloJpeg *jpeg, CacheClient_t *Client)
{
+ MSG("Jpeg_close\n");
a_Dicache_close(jpeg->url, jpeg->version, Client);
jpeg_destroy_decompress(&(jpeg->cinfo));
dFree(jpeg);