Commit a965d09c authored by Ryan Bloom's avatar Ryan Bloom
Browse files

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
parent 23397fb9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#include "apr_optional.h"

APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *))
APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *));
+3 −3
Original line number Diff line number Diff line
@@ -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 */
+1 −1
Original line number Diff line number Diff line
#include "apr_optional.h"

APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *))
APR_DECLARE_OPTIONAL_FN(int,TestOptionalFn,(const char *));