diff options
Diffstat (limited to 'src/account-server/accountclient.cpp')
-rw-r--r-- | src/account-server/accountclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/account-server/accountclient.cpp b/src/account-server/accountclient.cpp index f8134ba2..814f2aba 100644 --- a/src/account-server/accountclient.cpp +++ b/src/account-server/accountclient.cpp @@ -23,7 +23,7 @@ AccountClient::AccountClient(ENetPeer *peer): NetComputer(peer), status(CLIENT_LOGIN), - mAccount(NULL) + mAccount(nullptr) { } @@ -41,5 +41,5 @@ void AccountClient::setAccount(Account *acc) void AccountClient::unsetAccount() { delete mAccount; - mAccount = NULL; + mAccount = nullptr; } |