summaryrefslogtreecommitdiff
path: root/src/net/manaserv/connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/manaserv/connection.cpp')
-rw-r--r--src/net/manaserv/connection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/manaserv/connection.cpp b/src/net/manaserv/connection.cpp
index 5d869b9d..4bc57695 100644
--- a/src/net/manaserv/connection.cpp
+++ b/src/net/manaserv/connection.cpp
@@ -32,7 +32,7 @@ namespace ManaServ
{
Connection::Connection(ENetHost *client):
- mConnection(0), mClient(client)
+ mConnection(nullptr), mClient(client)
{
mPort = 0;
connections++;
@@ -83,7 +83,7 @@ void Connection::disconnect()
enet_host_flush(mClient);
enet_peer_reset(mConnection);
- mConnection = 0;
+ mConnection = nullptr;
}
bool Connection::isConnected()