From: Ryan Bloom Date: Thu, 22 Feb 2001 17:46:48 +0000 (+0000) Subject: Remove a semicolon from a macro. This makes things a bit more readable, X-Git-Tag: 2.0.12~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2eb5c30581f347662c93feca95fcc56168e8768c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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 *));