Skip to content

Commit

Permalink
fix prinf %d warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Mar 29, 2017
1 parent ba3d859 commit 3ef96e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fcgi_protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3ef96e6

Please sign in to comment.