diff options
author | Jeff Trawick <trawick@apache.org> | 2009-11-24 19:06:16 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-11-24 19:06:16 +0000 |
commit | 1254b08e61fdd5e7c16b3ffd343bf806598eeeaa (patch) | |
tree | 4e75876a68cb15d3b319b64912718ca4cb56fecc /include/util_mutex.h | |
parent | 8cfde79c6971647693403e5a5bb5cbda2a92641e (diff) | |
download | httpd-1254b08e61fdd5e7c16b3ffd343bf806598eeeaa.tar.gz |
fix Win32 compile failure in r883540, reported by Gregg Smith
(on Win32, external APIs use one calling convention while directive
parsers use a different one)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@883816 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_mutex.h')
-rw-r--r-- | include/util_mutex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/util_mutex.h b/include/util_mutex.h index b25247d5c0..a08cfc72fa 100644 --- a/include/util_mutex.h +++ b/include/util_mutex.h @@ -99,9 +99,9 @@ AP_DECLARE(apr_status_t) ap_parse_mutex(const char *arg, apr_pool_t *pool, const char **mutexfile); /* private function to process the Mutex directive */ -AP_DECLARE(const char *) ap_set_mutex(cmd_parms *cmd, void *dummy, - const char *typelist, - const char *mechfile); +const char * ap_set_mutex(cmd_parms *cmd, void *dummy, + const char *typelist, + const char *mechfile); /** * option flags for ap_mutex_register(), ap_global_mutex_create(), and |