diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-31 06:56:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-31 06:56:15 +0300 |
commit | e543a81c6dc91713af0c5f753aa0d479affdfa2e (patch) | |
tree | a9a23671b45c48ddfc0230284224e62f8471a9c6 | |
parent | 9b88bc66fc280b7c178aabcacf51664f848246fe (diff) | |
download | plus-e543a81c6dc91713af0c5f753aa0d479affdfa2e.tar.gz plus-e543a81c6dc91713af0c5f753aa0d479affdfa2e.tar.bz2 plus-e543a81c6dc91713af0c5f753aa0d479affdfa2e.tar.xz plus-e543a81c6dc91713af0c5f753aa0d479affdfa2e.zip |
Fix compilation warning.
-rw-r--r-- | src/net/tmwa/beingrecv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/beingrecv.cpp b/src/net/tmwa/beingrecv.cpp index d73abccc1..bb165789d 100644 --- a/src/net/tmwa/beingrecv.cpp +++ b/src/net/tmwa/beingrecv.cpp @@ -1405,7 +1405,7 @@ void BeingRecv::processIpResponse(Net::MessageIn &msg) } else { - ipToString(msg.readInt32("ip address")); + msg.readInt32("ip address"); DEBUGLOGSTR("invisible player?"); } |