diff options
author | Yann Ylavic <ylavic@apache.org> | 2020-03-27 10:15:03 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2020-03-27 10:15:03 +0100 |
commit | f23060327f84198e2395d61e2bc5e8852ce751e5 (patch) | |
tree | 7b2e9c50d24ab113b0e0295b95fec82ae7d0786a /include | |
parent | * modules/ssl/ssl_private.h: Define X509_up_ref and EVP_PKEY_up_ref (diff) | |
download | apache2-f23060327f84198e2395d61e2bc5e8852ce751e5.tar.xz apache2-f23060327f84198e2395d61e2bc5e8852ce751e5.zip |
Parentheses around AP_BUCKET_IS_EOR argument.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1875769 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_request.h b/include/http_request.h index 7c818a0899..5ca04b091d 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -605,7 +605,7 @@ AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_eor; * @param e The bucket to inspect * @return true or false */ -#define AP_BUCKET_IS_EOR(e) (e->type == &ap_bucket_type_eor) +#define AP_BUCKET_IS_EOR(e) ((e)->type == &ap_bucket_type_eor) /** * Make the bucket passed in an End Of REQUEST (EOR) bucket |