2
0
Fork 0

[fetch] use signed integers for liFetchDatabase refcount

This commit is contained in:
Stefan Bühler 2013-07-20 11:49:49 +02:00
parent e762189fb5
commit 9aafe5aa2a
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#include <lighttpd/fetch.h>
struct liFetchDatabase {
guint refcount, internal_refcount;
gint refcount, internal_refcount;
GMutex *lock;
GHashTable *cache; /* GString -> liFetchEntryP. key is in entry->public.key */
GQueue lru_queue, lru_negative_queue;