diff options
author | jcid <devnull@localhost> | 2007-11-17 15:18:35 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-17 15:18:35 +0100 |
commit | 9fce735bdcebd04957360f4b673b1dfe4645f0af (patch) | |
tree | 4d4321f2f1ba3aa089e61b48bf3812415bc76e1a /src/cache.c | |
parent | dfd741a2a60c8013cf96666bb9f24408b863790e (diff) |
Added the "static" qualifier where missing.
Diffstat (limited to 'src/cache.c')
-rw-r--r-- | src/cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cache.c b/src/cache.c index eeeb5162..84e93fc6 100644 --- a/src/cache.c +++ b/src/cache.c @@ -274,7 +274,7 @@ static void Cache_entry_free(CacheEntry_t *entry) * All the entry clients are removed too! (it may stop rendering of this * same resource on other windows, but nothing more). */ -void Cache_entry_remove(CacheEntry_t *entry, DilloUrl *url) +static void Cache_entry_remove(CacheEntry_t *entry, DilloUrl *url) { int i; CacheClient_t *Client; @@ -691,7 +691,7 @@ static int Cache_redirect(CacheEntry_t *entry, int Flags, BrowserWindow *bw) * Check whether a URL scheme is downloadable. * Return: 1 enabled, 0 disabled. */ -int Cache_download_enabled(const DilloUrl *url) +static int Cache_download_enabled(const DilloUrl *url) { if (!dStrcasecmp(URL_SCHEME(url), "http") || !dStrcasecmp(URL_SCHEME(url), "https") || |