From 321578fd1473371744be628cb4499906c5697118 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 25 Mar 2010 10:32:12 +0000 Subject: [PATCH] Fixed compilation: removed extra tokens after #endif, which MSVC doesn't complain about :-( --- apps/httpserver_raw/httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/httpserver_raw/httpd.c b/apps/httpserver_raw/httpd.c index 2f7d609..b7badc5 100644 --- a/apps/httpserver_raw/httpd.c +++ b/apps/httpserver_raw/httpd.c @@ -1438,7 +1438,7 @@ http_parse_request(struct pbuf **inp, struct http_state *hs) pbuf_copy_partial(hs->req, httpd_req_buf, data_len, 0); data = httpd_req_buf; } else -#endif LWIP_HTTPD_SUPPORT_REQUESTLIST +#endif /* LWIP_HTTPD_SUPPORT_REQUESTLIST */ { data = (char *)p->payload; data_len = p->len;