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/char/int_homun.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/char/int_homun.c')
-rw-r--r-- | src/char/int_homun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/char/int_homun.c b/src/char/int_homun.c index 43d56359d..bccefa428 100644 --- a/src/char/int_homun.c +++ b/src/char/int_homun.c @@ -122,7 +122,8 @@ int inter_homun_init() if( (fp=fopen(homun_txt,"r"))==NULL ) return 1; - while(fgets(line,sizeof(line),fp)){ + while(fgets(line, sizeof(line), fp)) + { p = (struct s_homunculus*)aCalloc(sizeof(struct s_homunculus), 1); if(p==NULL){ ShowFatalError("int_homun: out of memory!\n"); |