From 890b248563f2bb87a3d47535c7f0e51cdf6dc677 Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Thu, 10 Oct 2019 23:11:15 +0300 Subject: [PATCH] ifdef --- src/http/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/path.c b/src/http/path.c index 60c2f4c..fb360ed 100644 --- a/src/http/path.c +++ b/src/http/path.c @@ -117,7 +117,7 @@ char *simplify_request_path(const char *str) { return simplified; } -#if TEST_HTTP_PATH +#ifdef TEST_HTTP_PATH int test_simplify_request_path(const char *sample, const char *expected) { char *result = simplify_request_path(sample);