diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-07 12:06:25 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-07 12:06:25 +0000 |
commit | 8c1bb7b498aae6203289dd9295e187b05c8b7014 (patch) | |
tree | baabad310c3bef2983e12c33ff3bb417f5230a8d /src/tool/mapcache.c | |
parent | ba13e8d6612aaddebe640d0538f9bb859b600ba2 (diff) | |
download | hercules-8c1bb7b498aae6203289dd9295e187b05c8b7014.tar.gz hercules-8c1bb7b498aae6203289dd9295e187b05c8b7014.tar.bz2 hercules-8c1bb7b498aae6203289dd9295e187b05c8b7014.tar.xz hercules-8c1bb7b498aae6203289dd9295e187b05c8b7014.zip |
- Added function str2ip() to do platform-safe conversions
- Removed a bunch of unused stuff
- Moved SIGILL to unix-only defines since tests and docs show that Windows doesn't issue SIGILL
- Fixed several annoying compilation warnings
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10177 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/tool/mapcache.c')
-rw-r--r-- | src/tool/mapcache.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tool/mapcache.c b/src/tool/mapcache.c index 32680f917..a1b537a56 100644 --- a/src/tool/mapcache.c +++ b/src/tool/mapcache.c @@ -163,7 +163,7 @@ int read_map(char *name, struct map_data *m) void cache_map(char *name, struct map_data *m) { struct map_info info; - long len; + unsigned long len; unsigned char *write_buf; // Create an output buffer twice as big as the uncompressed map... this way we're sure it fits @@ -218,9 +218,9 @@ char *remove_extension(char *mapname) if (ptr) { //Check and remove extension. while (ptr[1] && (ptr2 = strchr(ptr+1, '.'))) ptr = ptr2; //Skip to the last dot. - if(stricmp(ptr,".gat") == 0 || - stricmp(ptr,".afm") == 0 || - stricmp(ptr,".af2") == 0) + if(strcmp(ptr,".gat") == 0 || + strcmp(ptr,".afm") == 0 || + strcmp(ptr,".af2") == 0) *ptr = '\0'; //Remove extension. } return mapname; |