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/test | |
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/test')
-rw-r--r-- | modules/test/mod_optional_fn_export.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/test/mod_optional_fn_export.h b/modules/test/mod_optional_fn_export.h index 800ccab4f6..a1950f373b 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 *)); |