summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:52:31 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2011-05-03 04:52:31 +0000
commitacdcb2be890c692fed2740d24c405f94ed6bcda3 (patch)
treecb47e6fb68ae3eeedabc48a547f14f8faf690a6f /strings
parenta6aa7492dec404813558761867fb67e0984bb4ad (diff)
downloadlibapr-acdcb2be890c692fed2740d24c405f94ed6bcda3.tar.gz
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
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);