From 0f0e7cc54aecab1647bdcd222c84d17275b92313 Mon Sep 17 00:00:00 2001 From: "p37sitdu, corvid" Date: Sat, 12 Jan 2013 20:13:36 +0000 Subject: clean up struct typedefs --- src/dicache.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/dicache.c') 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 -- cgit v1.2.3