From 2eb5c30581f347662c93feca95fcc56168e8768c Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Thu, 22 Feb 2001 17:46:48 +0000 Subject: [PATCH] Remove a semicolon from a macro. This makes things a bit more readable, 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 | 2 +- modules/filters/mod_include.h | 6 +++--- modules/test/mod_optional_fn_export.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/experimental/mod_optional_fn_export.h b/modules/experimental/mod_optional_fn_export.h index 800ccab4f68..a1950f373bd 100644 --- a/modules/experimental/mod_optional_fn_export.h +++ b/modules/experimental/mod_optional_fn_export.h @@ -1,3 +1,3 @@ #include "apr_optional.h" -APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *)) +APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *)); diff --git a/modules/filters/mod_include.h b/modules/filters/mod_include.h index 30909c8c50d..a6250847561 100644 --- a/modules/filters/mod_include.h +++ b/modules/filters/mod_include.h @@ -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 */ diff --git a/modules/test/mod_optional_fn_export.h b/modules/test/mod_optional_fn_export.h index 800ccab4f68..a1950f373bd 100644 --- a/modules/test/mod_optional_fn_export.h +++ b/modules/test/mod_optional_fn_export.h @@ -1,3 +1,3 @@ #include "apr_optional.h" -APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *)) +APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *)); -- 2.47.2