diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-28 10:36:10 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-28 10:36:10 +0000 |
commit | 08d30308c4b2055d1c0188a2a570ab91c5d972a7 (patch) | |
tree | ba0fa797ce44be36e20ad905273f92bb5eaa9365 | |
parent | f412aa286157b5e9484d66887431236a4dcddbe7 (diff) | |
download | hercules-08d30308c4b2055d1c0188a2a570ab91c5d972a7.tar.gz hercules-08d30308c4b2055d1c0188a2a570ab91c5d972a7.tar.bz2 hercules-08d30308c4b2055d1c0188a2a570ab91c5d972a7.tar.xz hercules-08d30308c4b2055d1c0188a2a570ab91c5d972a7.zip |
Fixed sign warnings in login/login.c
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7940 54d463be-8e91-2dee-dedb-b68131a5f0ec
-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++) {
|