mirror of
https://github.com/apache/httpd.git
synced 2025-07-25 16:11:32 +00:00
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
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user