aboutsummaryrefslogtreecommitdiff
path: root/src/dicache.h
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2008-12-25 09:57:55 -0300
committerJorge Arellano Cid <jcid@dillo.org>2008-12-25 09:57:55 -0300
commit5486bedf18450ae4de413c4174a0175948c95c3e (patch)
tree2f7bcdd68df40a36e4f8f3f67c70ce108bf321df /src/dicache.h
parenta821e0e87480e8b812ab5975c1031d5ee5eb2587 (diff)
Started code cleanup of the image code mainly in dicache.c. part#1
Diffstat (limited to 'src/dicache.h')
-rw-r--r--src/dicache.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dicache.h b/src/dicache.h
index 6cbcf3a5..c78d0953 100644
--- a/src/dicache.h
+++ b/src/dicache.h
@@ -29,7 +29,7 @@ struct _DICacheEntry {
uchar_t *cmap; /* Color map */
uchar_t *linebuf; /* Decompressed RGB buffer for one line */
void *v_imgbuf; /* Void pointer to an Imgbuf object */
- size_t TotalSize; /* Amount of memory the image takes up */
+ uint_t TotalSize; /* Amount of memory the image takes up */
int Y; /* Current decoding row */
uint_t ScanNumber; /* Current decoding scan */
bitvec_t *BitVec; /* Bit vector for decoded rows */
@@ -37,7 +37,6 @@ struct _DICacheEntry {
int RefCount; /* Reference Counter */
int version; /* Version number, used for different
versions of the same URL image */
-
DICacheEntry *next; /* Link to the next "newer" version */
};