You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2020/03/27 09:15:03 UTC

svn commit: r1875769 - /httpd/httpd/trunk/include/http_request.h

Author: ylavic
Date: Fri Mar 27 09:15:03 2020
New Revision: 1875769

URL: http://svn.apache.org/viewvc?rev=1875769&view=rev
Log:
Parentheses around AP_BUCKET_IS_EOR argument.

Modified:
    httpd/httpd/trunk/include/http_request.h

Modified: httpd/httpd/trunk/include/http_request.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_request.h?rev=1875769&r1=1875768&r2=1875769&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_request.h (original)
+++ httpd/httpd/trunk/include/http_request.h Fri Mar 27 09:15:03 2020
@@ -605,7 +605,7 @@ AP_DECLARE_DATA extern const apr_bucket_
  * @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