summaryrefslogtreecommitdiff
path: root/content/cache.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-03-04 11:59:36 +0000
committerJames Bursa <james@netsurf-browser.org>2003-03-04 11:59:36 +0000
commite2efda19df7a52f11a9c9ed421ac34e6804b30d4 (patch)
tree1ffb2ecc19d9415438f5aefdbb5e6902f69093ba /content/cache.h
parent64e1781eb4c0d007801ea894cb3c0967a8aecbbd (diff)
downloadnetsurf-e2efda19df7a52f11a9c9ed421ac34e6804b30d4.tar.gz
netsurf-e2efda19df7a52f11a9c9ed421ac34e6804b30d4.tar.bz2
[project @ 2003-03-04 11:59:35 by bursa]
More compiler warning fixes. svn path=/import/netsurf/; revision=104
Diffstat (limited to 'content/cache.h')
-rw-r--r--content/cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/cache.h b/content/cache.h
index 2ee4e3b81..a1c681507 100644
--- a/content/cache.h
+++ b/content/cache.h
@@ -1,5 +1,5 @@
/**
- * $Id: cache.h,v 1.1 2003/02/09 12:58:14 bursa Exp $
+ * $Id: cache.h,v 1.2 2003/03/04 11:59:35 bursa Exp $
*/
/**
@@ -30,7 +30,7 @@ struct cache_entry;
void cache_init(void);
void cache_quit(void);
-struct content * cache_get(char * const url);
+struct content * cache_get(const char * const url);
void cache_put(struct content * content);
void cache_free(struct content * content);
void cache_dump(void);