diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/login/login.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 83ba1d299..209ee8568 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/07/28
+ * Fixed sign warnings in login/login.c [Toms]
* Fixed "conversion from 'double' to 'int', possible loss of data" [Toms]
* Fixed "warning: redefinition of [ushort/uint/ulong]" [Toms]
* Fixed duplicate case value on NJ_SUITON [Toms]
diff --git a/src/login/login.c b/src/login/login.c index 09d4a77ca..81727b003 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1407,7 +1407,7 @@ static int online_db_setoffline(DBKey key, void* data, va_list ap) { // Packet parsing for char-servers
//--------------------------------
int parse_fromchar(int fd) {
- int i;
+ unsigned int i;
int j, id;
unsigned char *p = (unsigned char *) &session[fd]->client_addr.sin_addr;
char ip[16];
@@ -1911,7 +1911,7 @@ int parse_fromchar(int fd) { }
{
struct online_login_data *p;
- int aid, users;
+ unsigned int aid, users;
online_db->foreach(online_db,online_db_setoffline,id); //Set all chars from this char-server offline first
users = RFIFOW(fd,4);
for (i = 0; i < users; i++) {
|