From 02895c1ce30003329c868484f4f81ed5b7bd8e39 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Fri, 7 Nov 2014 14:29:10 +0100 Subject: [PATCH] httpd_structs.h: IAR 7 wants 'static const' instead of 'const static'... --- apps/httpserver_raw/httpd_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/httpserver_raw/httpd_structs.h b/apps/httpserver_raw/httpd_structs.h index cfd1e55..197d0ce 100644 --- a/apps/httpserver_raw/httpd_structs.h +++ b/apps/httpserver_raw/httpd_structs.h @@ -89,7 +89,7 @@ static const char * const g_psHTTPHeaderStrings[] = #define DEFAULT_404_HTML 26 /* default 404 body */ /** A list of extension-to-HTTP header strings */ -const static tHTTPHeader g_psHTTPHeaders[] = +static const tHTTPHeader g_psHTTPHeaders[] = { { "html", HTTP_HDR_HTML}, { "htm", HTTP_HDR_HTML},