diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-19 23:10:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-19 23:10:19 +0300 |
commit | bdd2a88890ea7819371047fa53eeca87209147d0 (patch) | |
tree | 95dcb4401bcb29ac0c043ecd278c4f1b8f3308dc /src/net/tmwa | |
parent | 78982d2707fc8db243cc29448c411a52b5aeeffb (diff) | |
download | plus-bdd2a88890ea7819371047fa53eeca87209147d0.tar.gz plus-bdd2a88890ea7819371047fa53eeca87209147d0.tar.bz2 plus-bdd2a88890ea7819371047fa53eeca87209147d0.tar.xz plus-bdd2a88890ea7819371047fa53eeca87209147d0.zip |
Fix compilation warnings.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/network.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/net/tmwa/network.cpp b/src/net/tmwa/network.cpp index 98f6485a7..0492f6609 100644 --- a/src/net/tmwa/network.cpp +++ b/src/net/tmwa/network.cpp @@ -179,8 +179,11 @@ bool Network::messageReady() } else { - if (msgId >= 0 && msgId < sizeof(packet_lengths) / sizeof (short)) + if (msgId >= 0 && msgId < static_cast<signed>( + sizeof(packet_lengths) / sizeof (short))) + { len = packet_lengths[msgId]; + } } if (len == -1 && mInSize > 4) |