From 919eedc7f9c2e702162647ae79e6db079f98e981 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Sun, 20 Sep 2009 13:58:50 +0530 Subject: Remove inline keyword from static functions The compiler inlines static functions as necessary anyway. No more inline keywords exist in Tinyproxy source code. We want to avoid using this keyword anyway. --- src/acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/acl.c') diff --git a/src/acl.c b/src/acl.c index da3e76e..4eb2fcc 100644 --- a/src/acl.c +++ b/src/acl.c @@ -68,7 +68,7 @@ static vector_t access_list = NULL; * -1 on failure (invalid mask value) * */ -inline static int +static int fill_netmask_array (char *bitmask_string, unsigned char array[], unsigned int len) { -- cgit v1.2.3