summaryrefslogtreecommitdiffstats
path: root/modules/arch/win32
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2003-07-30 21:20:06 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2003-07-30 21:20:06 +0200
commitd93bf49e39dca3c218265830e5894ba1469d3029 (patch)
treec7a8ff38a6279c53736f94a96edf94f6ebb4815d /modules/arch/win32
parentthis patch was reverted. (diff)
downloadapache2-d93bf49e39dca3c218265830e5894ba1469d3029.tar.xz
apache2-d93bf49e39dca3c218265830e5894ba1469d3029.zip
Correct the declaration of the PFN_GETEXTENSIONVERSION type,
which gcc was rejecting (for good reasons.) Submitted by: Eduardo Franco <eduardo.franco@pulso.com.br> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch/win32')
-rw-r--r--modules/arch/win32/mod_isapi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/win32/mod_isapi.h b/modules/arch/win32/mod_isapi.h
index fc7f0537b3..7e3374b879 100644
--- a/modules/arch/win32/mod_isapi.h
+++ b/modules/arch/win32/mod_isapi.h
@@ -74,7 +74,7 @@ typedef struct HSE_VERSION_INFO {
/* The startup entry point that must be exported by every ISAPI handler
*/
int APR_THREAD_FUNC GetExtensionVersion(HSE_VERSION_INFO *ver_info);
-typedef (APR_THREAD_FUNC *PFN_GETEXTENSIONVERSION)(HSE_VERSION_INFO *ver_info);
+typedef int (APR_THREAD_FUNC *PFN_GETEXTENSIONVERSION)(HSE_VERSION_INFO *ver_info);
/* Our internal 'HCONN' representation, always opaque to the user.
*/