diff options
author | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
commit | 8a2b5a9e5b8aad195531603aedbbdd5a9eb98bfa (patch) | |
tree | 6053a7217a9c976c0d1e78bb57c4052ba8353e53 /src/dicache.c | |
parent | 4272ccda16b3d6b8695f01eb3c6ea544a97cbf54 (diff) |
- Made several cleanups according to compiler warnings with "-W -Wall".
Diffstat (limited to 'src/dicache.c')
-rw-r--r-- | src/dicache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dicache.c b/src/dicache.c index 4bdbb71b..272c14a6 100644 --- a/src/dicache.c +++ b/src/dicache.c @@ -387,10 +387,9 @@ void a_Dicache_new_scan(DilloImage *image, const DilloUrl *url, int version) * (Write a scan line into the Dicache entry) * buf: row buffer * Y : row number - * x : horizontal offset? (always zero) */ void a_Dicache_write(DilloImage *Image, DilloUrl *url, int version, - const uchar_t *buf, int x, uint_t Y) + const uchar_t *buf, uint_t Y) { DICacheEntry *DicEntry; |