aboutsummaryrefslogtreecommitdiff
path: root/Projects/Webserver/Lib/TELNETServerApp.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-15 13:50:04 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-15 13:50:04 +0000
commit3a67f288c24ea3914f3b168de77ec6a54679d027 (patch)
treeb1785e5226d03de442b52cf6fd8d156431722b3d /Projects/Webserver/Lib/TELNETServerApp.c
parentf2354b8ed33eef681488777b4190b76d3e9b74ae (diff)
Oops - missing brackets in the declaration of a string in TELNETServerApp.c.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1131 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/Webserver/Lib/TELNETServerApp.c')
-rw-r--r--Projects/Webserver/Lib/TELNETServerApp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/TELNETServerApp.c b/Projects/Webserver/Lib/TELNETServerApp.c
index 2abd7b0e..d1f1d7f9 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)