Fix conversion from string literal to 'char *' for PageStatsdb

This commit is contained in:
Ai Lin Chia
2016-05-30 17:07:11 +02:00
parent 8dba617b75
commit acd0fe5ee2

@ -53,7 +53,7 @@ static bool s_graphInUse = false;
bool sendPageGraph ( TcpSocket *s, HttpRequest *r ) {
if ( s_graphInUse ) {
char *msg = "stats graph calculating for another user. "
const char *msg = "stats graph calculating for another user. "
"Try again later.";
g_httpServer.sendErrorReply(s,500,msg);
return true;