From b4d6bac9a4d623a9b32188458b26ae424d374bb3 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 25 May 2007 15:21:53 +0000 Subject: 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 --- src/map/pc.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/map/pc.c') diff --git a/src/map/pc.c b/src/map/pc.c index 22dad96f0..8692599f1 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7344,7 +7344,8 @@ int pc_readdb(void) ShowError("can't read %s\n", line); return 1; } - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { int jobs[MAX_PC_CLASS], job_count, job; int type; unsigned int ui,maxlv; @@ -7422,7 +7423,8 @@ int pc_readdb(void) return 1; } - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { char *split[50]; int f=0, m=3; if(line[0]=='/' && line[1]=='/') @@ -7472,7 +7474,8 @@ int pc_readdb(void) ShowError("can't read %s\n", line); return 1; } - while(fgets(line, sizeof(line)-1, fp)){ + while(fgets(line, sizeof(line), fp)) + { char *split[10]; int lv,n; if(line[0]=='/' && line[1]=='/') @@ -7486,7 +7489,7 @@ int pc_readdb(void) n=atoi(split[1]); for(i=0;i