Merge pull request #15157 from mogemimi/fix-block-comment

Fix compiler warning: "/* within block comment"
This commit is contained in:
zilongshanren 2016-03-03 15:53:22 +08:00
commit e2d31c1c63
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ void WebSocket::onSubThreadStarted()
info.options = 0;
info.user = this;
int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE/* | LLL_INFO | LLL_DEBUG/* | LLL_PARSER*/ | LLL_HEADER | LLL_EXT | LLL_CLIENT | LLL_LATENCY;
int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE/* | LLL_INFO | LLL_DEBUG | LLL_PARSER*/ | LLL_HEADER | LLL_EXT | LLL_CLIENT | LLL_LATENCY;
lws_set_log_level(log_level, printWebSocketLog);
_wsContext = lws_create_context(&info);