summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:51:24 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:51:24 +0000
commit3bfbd3794dd926bec36084c1d7a9a463a8375168 (patch)
tree8fb1bf16e2d38ed5514adb397668f56b2fe85370
parentbdf45a0c822c797bd5ba9aee46b5a15fd359f6a9 (diff)
downloadlibapr-3bfbd3794dd926bec36084c1d7a9a463a8375168.tar.gz
Correct inlining per Jeff Traawick's feedback
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@1098902 13f79535-47bb-0310-9956-ffa450edef68
-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);