summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:52:38 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:52:38 +0000
commite035fed3117f2b227cb525ce853a5d1c5109879b (patch)
tree5878a22ed517a67275aead7c7988b1b4dff766a6 /strings
parent8854428ac52ef56effc4ec181bfd1dc35db9159e (diff)
downloadlibapr-e035fed3117f2b227cb525ce853a5d1c5109879b.tar.gz
Correct inlining per Jeff Trawick's feedback; Forward ports: r1098902
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1098904 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-rw-r--r--strings/apr_fnmatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_fnmatch.c b/strings/apr_fnmatch.c
index d5eeccd5e..cc361155d 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);