summaryrefslogtreecommitdiff
path: root/src/dicache.c
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-04-23 10:21:17 -0400
committercorvid <corvid@lavabit.com>2009-04-23 10:21:17 -0400
commitd8e27cdd2c142eefb0c99eac9f8861b4e5e64027 (patch)
treed20a82c599dd3d52fc6b36d9b1995d545111aa80 /src/dicache.c
parentc0c620e80f8c6398842a495ce62a5f1fb1aea8c0 (diff)
Remove unused parameter in a_Dicache_write()
Diffstat (limited to 'src/dicache.c')
-rw-r--r--src/dicache.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dicache.c b/src/dicache.c
index 109f1b36..00bc5204 100644
--- a/src/dicache.c
+++ b/src/dicache.c
@@ -333,13 +333,11 @@ void a_Dicache_new_scan(const DilloUrl *url, int version)
* buf: row buffer
* Y : row number
*/
-void a_Dicache_write(DilloImage *Image, DilloUrl *url, int version,
- const uchar_t *buf, uint_t Y)
+void a_Dicache_write(DilloUrl *url, int version, const uchar_t *buf, uint_t Y)
{
DICacheEntry *DicEntry;
_MSG("a_Dicache_write\n");
- dReturn_if_fail ( Image != NULL );
DicEntry = a_Dicache_get_entry(url, version);
dReturn_if_fail ( DicEntry != NULL );
dReturn_if_fail ( DicEntry->width > 0 && DicEntry->height > 0 );