]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove a semicolon from a macro. This makes things a bit more readable,
authorRyan Bloom <rbb@apache.org>
Thu, 22 Feb 2001 17:46:48 +0000 (17:46 +0000)
committerRyan Bloom <rbb@apache.org>
Thu, 22 Feb 2001 17:46:48 +0000 (17:46 +0000)
and it makes this macro look like the rest of our macros.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88277 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_optional_fn_export.h
modules/filters/mod_include.h
modules/test/mod_optional_fn_export.h

index 800ccab4f6840c188038a42116ac9342b8aa53a0..a1950f373bd3c65a85b11efa437d53a5c5002d99 100644 (file)
@@ -1,3 +1,3 @@
 #include "apr_optional.h"
 
-APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *))
+APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *));
index 30909c8c50da6031aa5972d11a8caa2e366804ce..a62508475613bbbc9dae3a3b63719f1799a05217 100644 (file)
@@ -200,13 +200,13 @@ typedef int (*include_handler)(include_ctx_t *ctx, apr_bucket_brigade **bb,
 APR_DECLARE_OPTIONAL_FN(void, ap_ssi_get_tag_and_value, (include_ctx_t *ctx,
                                                         char **tag,
                                                         char **tag_val,
-                                                        int dodecode))
+                                                        int dodecode));
 APR_DECLARE_OPTIONAL_FN(void, ap_ssi_parse_string, (request_rec *r,
                                                     const char *in,
                                                     char *out,
                                                     size_t length,
-                                                    int leave_name))
+                                                    int leave_name));
 APR_DECLARE_OPTIONAL_FN(void, ap_register_include_handler, (char *tag,
-                                                         include_handler func))
+                                                         include_handler func));
 
 #endif /* MOD_INCLUDE */
index 800ccab4f6840c188038a42116ac9342b8aa53a0..a1950f373bd3c65a85b11efa437d53a5c5002d99 100644 (file)
@@ -1,3 +1,3 @@
 #include "apr_optional.h"
 
-APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *))
+APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *));