diff options
Diffstat (limited to 'src/dicache.c')
-rw-r--r-- | src/dicache.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dicache.c b/src/dicache.c index e700f000..23721685 100644 --- a/src/dicache.c +++ b/src/dicache.c @@ -21,7 +21,6 @@ #include "dgif.h" #include "djpeg.h" -typedef struct _DICacheNode DICacheNode; enum { DIC_Gif, @@ -29,11 +28,11 @@ enum { DIC_Jpeg }; -struct _DICacheNode { +typedef struct { int valid; /* flag */ DilloUrl *url; /* primary "Key" for this dicache entry */ DICacheEntry *first; /* pointer to the first dicache entry in this list */ -}; +} DICacheNode; /* * List of DICacheNode. One node per URL. Each node may have several |