aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-09-21 06:25:31 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-09-21 06:25:31 +0000
commitaae59857a2ee47aecbec75cd2c28de2c9b8cf3c7 (patch)
tree924c10defa604e1a8ecb226c97db3b5d7bd3d2d3 /Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c
parent8b420566cd4e26a963ad79988ff51f93e396ac42 (diff)
downloadlufa-aae59857a2ee47aecbec75cd2c28de2c9b8cf3c7.tar.gz
lufa-aae59857a2ee47aecbec75cd2c28de2c9b8cf3c7.tar.bz2
lufa-aae59857a2ee47aecbec75cd2c28de2c9b8cf3c7.zip
Add const qualifier to all PROGMEM data to prevent warnings in newer AVR-GCC compiler versions.
Diffstat (limited to 'Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c')
-rw-r--r--Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c b/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c
index 401dddf0d..241da4896 100644
--- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c
+++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c
@@ -39,22 +39,22 @@
/** HTTP server response header, for transmission before the page contents. This indicates to the host that a page exists at the
* given location, and gives extra connection information.
*/
-char PROGMEM HTTP200Header[] = "HTTP/1.1 200 OK\r\n"
- "Server: LUFA RNDIS\r\n"
- "Content-type: text/html\r\n"
- "Connection: close\r\n\r\n";
+const char HTTP200Header[] PROGMEM = "HTTP/1.1 200 OK\r\n"
+ "Server: LUFA RNDIS\r\n"
+ "Content-type: text/html\r\n"
+ "Connection: close\r\n\r\n";
/** HTTP server response header, for transmission before a resource not found error. This indicates to the host that the given
* given URL is invalid, and gives extra error information.
*/
-char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
- "Server: LUFA RNDIS\r\n"
- "Connection: close\r\n\r\n";
+const char HTTP404Header[] PROGMEM = "HTTP/1.1 404 Not Found\r\n"
+ "Server: LUFA RNDIS\r\n"
+ "Connection: close\r\n\r\n";
/** HTTP page to serve to the host when a HTTP request is made. This page is too long for a single response, thus it is automatically
* broken up into smaller blocks and sent as a series of packets each time the webserver application callback is run.
*/
-char PROGMEM HTTPPage[] =
+const char HTTPPage[] PROGMEM =
"<html>"
" <head>"
" <title>"