From d5d1956f5242e853a184aee4ccd43b79382d89cc Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 14 Nov 2018 09:49:16 +0000 Subject: [PATCH] Fix: Corrected namespace for igloo_httpp_destroy() --- include/igloo/httpp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/igloo/httpp.h b/include/igloo/httpp.h index efb466d..d9081c1 100644 --- a/include/igloo/httpp.h +++ b/include/igloo/httpp.h @@ -158,7 +158,7 @@ char ** igloo_httpp_get_any_key(igloo_http_parser_t *parser, igloo_httpp_ns_t ns void igloo_httpp_free_any_key(char **keys); int igloo_httpp_addref(igloo_http_parser_t *parser); int igloo_httpp_release(igloo_http_parser_t *parser); -#define httpp_destroy(x) igloo_httpp_release((x)) +#define igloo_httpp_destroy(x) igloo_httpp_release((x)) /* util functions */ igloo_httpp_request_type_e igloo_httpp_str_to_method(const char * method);