diff options
Diffstat (limited to 'src/chat-server/chathandler.cpp')
-rw-r--r-- | src/chat-server/chathandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chat-server/chathandler.cpp b/src/chat-server/chathandler.cpp index 209c31cb..e1bb10df 100644 --- a/src/chat-server/chathandler.cpp +++ b/src/chat-server/chathandler.cpp @@ -344,7 +344,7 @@ void ChatHandler::handleEnterChannelMessage(ChatClient &client, MessageIn &msg) std::string channelName = msg.readString(); std::string givenPassword = msg.readString(); - ChatChannel *channel = NULL; + ChatChannel *channel = nullptr; if (chatChannelManager->channelExists(channelName) || chatChannelManager->tryNewPublicChannel(channelName)) { |