From fcdca9ebbe16ceb4e9174410477d0f65a7a8b6dc Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 19 Sep 2023 17:35:24 +0200 Subject: [PATCH] fix wrong named var name in Windows build --- mod_http2/h2_c2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod_http2/h2_c2.c b/mod_http2/h2_c2.c index 13567eb4..a9552009 100644 --- a/mod_http2/h2_c2.c +++ b/mod_http2/h2_c2.c @@ -495,7 +495,7 @@ static apr_status_t http2_get_pollfd_from_conn(conn_rec *c, } #else (void)c; - (void)pdf; + (void)pfd; (void)ptimeout; #endif /* H2_USE_PIPES */ return APR_ENOTIMPL;