From 3ef96e6a3ab11153b7bc834c1b049a6e2b8702b9 Mon Sep 17 00:00:00 2001 From: Mathieu CARBONNEAUX Date: Wed, 29 Mar 2017 23:05:17 +0200 Subject: [PATCH] fix prinf %d warning --- fcgi_protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fcgi_protocol.c b/fcgi_protocol.c index 55da311..106ffa2 100644 --- a/fcgi_protocol.c +++ b/fcgi_protocol.c @@ -475,7 +475,7 @@ int fcgi_protocol_dequeue(pool *p, fcgi_request *fr) ap_log_rerror(FCGI_LOG_ERR_NOERRNO, fr->r, "FastCGI: comm with server \"%s\" aborted: protocol error: " "invalid FCGI_END_REQUEST size: " - "%d != sizeof(FCGI_EndRequestBody)(%d)", + "%d != sizeof(FCGI_EndRequestBody)(%ld)", fr->fs_path, fr->dataLen, sizeof(FCGI_EndRequestBody)); return HTTP_INTERNAL_SERVER_ERROR; }