diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-28 17:17:41 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-28 17:17:41 +0100 |
commit | 0f8ac3432252390dc46b600409ba6fc88e958e95 (patch) | |
tree | bb66505421eb0cc1e9201586d027200fdb89213c /src/dicache.h | |
parent | 7149a1e3fc877a8c060cbf07e4325d636cc807ad (diff) | |
parent | 5486bedf18450ae4de413c4174a0175948c95c3e (diff) |
merge with main
Diffstat (limited to 'src/dicache.h')
-rw-r--r-- | src/dicache.h | 3 |
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 */ }; |