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/char/int_storage.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/char/int_storage.c') diff --git a/src/char/int_storage.c b/src/char/int_storage.c index e19268508..8c9a6faa7 100644 --- a/src/char/int_storage.c +++ b/src/char/int_storage.c @@ -204,7 +204,8 @@ int inter_storage_init() ShowError("can't read : %s\n",storage_txt); return 1; } - while(fgets(line,65535,fp)){ + while(fgets(line, sizeof(line), fp)) + { sscanf(line,"%d",&tmp_int); s = (struct storage*)aCalloc(sizeof(struct storage), 1); if(s==NULL){ @@ -232,7 +233,8 @@ int inter_storage_init() ShowError("can't read : %s\n",guild_storage_txt); return 1; } - while(fgets(line,65535,fp)){ + while(fgets(line, sizeof(line), fp)) + { sscanf(line,"%d",&tmp_int); gs = (struct guild_storage*)aCalloc(sizeof(struct guild_storage), 1); if(gs==NULL){ -- cgit v1.2.3-70-g09d2