From d93bf49e39dca3c218265830e5894ba1469d3029 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 30 Jul 2003 19:20:06 +0000 Subject: [PATCH] Correct the declaration of the PFN_GETEXTENSIONVERSION type, which gcc was rejecting (for good reasons.) Submitted by: Eduardo Franco git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100865 13f79535-47bb-0310-9956-ffa450edef68 --- modules/arch/win32/mod_isapi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.50.1