summaryrefslogtreecommitdiff
path: root/src/net/loginhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/loginhandler.cpp')
-rw-r--r--src/net/loginhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/loginhandler.cpp b/src/net/loginhandler.cpp
index 90f2dbd5..260c117d 100644
--- a/src/net/loginhandler.cpp
+++ b/src/net/loginhandler.cpp
@@ -45,7 +45,7 @@ void LoginHandler::handleMessage(MessageIn &msg)
{
case APMSG_LOGIN_RESPONSE:
{
- int errMsg = msg.readByte();
+ int errMsg = msg.readInt8();
// Successful login
if (errMsg == ERRMSG_OK)
{
@@ -77,7 +77,7 @@ void LoginHandler::handleMessage(MessageIn &msg)
break;
case APMSG_REGISTER_RESPONSE:
{
- int errMsg = msg.readByte();
+ int errMsg = msg.readInt8();
// Successful registration
if (errMsg == ERRMSG_OK)
{
@@ -109,7 +109,7 @@ void LoginHandler::handleMessage(MessageIn &msg)
break;
case APMSG_RECONNECT_RESPONSE:
{
- int errMsg = msg.readByte();
+ int errMsg = msg.readInt8();
// Successful login
if (errMsg == ERRMSG_OK)
{