From: Dean Camera Date: Mon, 15 Feb 2010 13:50:04 +0000 (+0000) Subject: Oops - missing brackets in the declaration of a string in TELNETServerApp.c. X-Git-Tag: LUFA-110528-BETA~595 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/015956baba318c14a1e83cb1e2225aa07f99f8d2?ds=inline Oops - missing brackets in the declaration of a string in TELNETServerApp.c. --- diff --git a/Projects/Webserver/Lib/TELNETServerApp.c b/Projects/Webserver/Lib/TELNETServerApp.c index 2abd7b0ed..d1f1d7f97 100644 --- a/Projects/Webserver/Lib/TELNETServerApp.c +++ b/Projects/Webserver/Lib/TELNETServerApp.c @@ -50,7 +50,7 @@ const char PROGMEM TELNETMenu[] = "\r\n" "\r\n>"; /** Header to print before the current connections are printed to the client */ -const char PROGMEM CurrentConnectionsHeader = "\r\n* Current TCP Connections: *\r\n"; +const char PROGMEM CurrentConnectionsHeader[] = "\r\n* Current TCP Connections: *\r\n"; /** Initialization function for the simple HTTP webserver. */ void TELNETServerApp_Init(void)