From acdcb2be890c692fed2740d24c405f94ed6bcda3 Mon Sep 17 00:00:00 2001 From: wrowe Date: Tue, 3 May 2011 04:52:31 +0000 Subject: Correct inlining per Jeff Trawick's feedback; Forward ports: r1098902 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1098903 13f79535-47bb-0310-9956-ffa450edef68 --- strings/apr_fnmatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'strings') diff --git a/strings/apr_fnmatch.c b/strings/apr_fnmatch.c index 2f8108e4c..fe4fd9b6f 100644 --- a/strings/apr_fnmatch.c +++ b/strings/apr_fnmatch.c @@ -71,7 +71,7 @@ * Both pattern and string are **char to support pointer increment of arbitrary * multibyte characters for the given locale, in a later iteration of this code */ -static __inline int fnmatch_ch(const char **pattern, const char **string, int flags) +static APR_INLINE int fnmatch_ch(const char **pattern, const char **string, int flags) { const char * const mismatch = *pattern; const int nocase = !!(flags & APR_FNM_CASE_BLIND); -- cgit v1.2.1