diff options
Diffstat (limited to 'src/char/int_pet.c')
-rw-r--r-- | src/char/int_pet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/char/int_pet.c b/src/char/int_pet.c index 4eb3f5b49..06c962e11 100644 --- a/src/char/int_pet.c +++ b/src/char/int_pet.c @@ -92,7 +92,8 @@ int inter_pet_init() if( (fp=fopen(pet_txt,"r"))==NULL ) return 1; - while(fgets(line,sizeof(line),fp)){ + while(fgets(line, sizeof(line), fp)) + { p = (struct s_pet*)aCalloc(sizeof(struct s_pet), 1); if(p==NULL){ ShowFatalError("int_pet: out of memory!\n"); |