diff options
author | Ryan Bloom <rbb@apache.org> | 2001-02-22 18:46:48 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-02-22 18:46:48 +0100 |
commit | 2eb5c30581f347662c93feca95fcc56168e8768c (patch) | |
tree | dfa194d4af0e6e81334c3938eda7c73f9cb256e2 /modules/filters | |
parent | clean up a call to apr_psprintf() (trailing NULL not needed) (diff) | |
download | apache2-2eb5c30581f347662c93feca95fcc56168e8768c.tar.xz apache2-2eb5c30581f347662c93feca95fcc56168e8768c.zip |
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
Diffstat (limited to 'modules/filters')
-rw-r--r-- | modules/filters/mod_include.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/filters/mod_include.h b/modules/filters/mod_include.h index 30909c8c50..a625084756 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 */ |