diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2003-07-30 21:20:06 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2003-07-30 21:20:06 +0200 |
commit | d93bf49e39dca3c218265830e5894ba1469d3029 (patch) | |
tree | c7a8ff38a6279c53736f94a96edf94f6ebb4815d /modules/arch/win32 | |
parent | this patch was reverted. (diff) | |
download | apache2-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.h | 2 |
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. */ |