diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-25 15:21:53 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-25 15:21:53 +0000 |
commit | b4d6bac9a4d623a9b32188458b26ae424d374bb3 (patch) | |
tree | 278b8f86ab39740f7b0dad0e726b10fc4198894a /src/map/status.c | |
parent | c842495d17863ebddaf64da006ceb642c70a9ad6 (diff) | |
download | hercules-b4d6bac9a4d623a9b32188458b26ae424d374bb3.tar.gz hercules-b4d6bac9a4d623a9b32188458b26ae424d374bb3.tar.bz2 hercules-b4d6bac9a4d623a9b32188458b26ae424d374bb3.tar.xz hercules-b4d6bac9a4d623a9b32188458b26ae424d374bb3.zip |
Corrected some weird fgets() statements, plus reformatted them
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10616 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/map/status.c b/src/map/status.c index 54b6db02e..27b18fbbc 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7282,7 +7282,8 @@ int status_readdb(void) return 1; } i = 0; - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { char *split[MAX_WEAPON_TYPE + 5]; i++; if(line[0]=='/' && line[1]=='/') @@ -7317,8 +7318,9 @@ int status_readdb(void) ShowError("can't read %s\n", path); return 1; } - while(fgets(line, sizeof(line)-1, fp)){ - char *split[MAX_LEVEL+1]; //Job Level is limited to MAX_LEVEL, so the bonuses should likewise be limited to it. [Skotlex] + while(fgets(line, sizeof(line), fp)) + { + char *split[MAX_LEVEL+1]; //Job Level is limited to MAX_LEVEL, so the bonuses should likewise be limited to it. [Skotlex] if(line[0]=='/' && line[1]=='/') continue; for(j=0,p=line;j<MAX_LEVEL+1 && p;j++){ @@ -7345,7 +7347,8 @@ int status_readdb(void) return 1; } i=0; - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { char *split[MAX_WEAPON_TYPE]; if(line[0]=='/' && line[1]=='/') continue; @@ -7380,7 +7383,8 @@ int status_readdb(void) return 1; } i=0; - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { char *split[MAX_REFINE+4]; if(line[0]=='/' && line[1]=='/') continue; |