summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2011-05-03 04:52:31 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2011-05-03 04:52:31 +0000
commit31855038ec21d36e0ac27240a48e6975c800da1b (patch)
treecb47e6fb68ae3eeedabc48a547f14f8faf690a6f /strings
parent3f3a7a5557a34acebc8d301f1b502241f22dbf93 (diff)
downloadapr-31855038ec21d36e0ac27240a48e6975c800da1b.tar.gz
Correct inlining per Jeff Trawick's feedback; Forward ports: r1098902
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1098903 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 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);