
Pages:<< prev 1 next >>


Off the Edge of the Map

GroupAdministrators
Posts1,199
JoinedMar 21, 2006
Bug: Overzealous conversion to const char renders code uncompilable.
Danger: High - Code won't finish compiling (sometimes?).
Found by: Igabod
Fixed by: Kayle
---
Mud.h
Find:
Change to:
db.c
Find:
Change to:
Find:
Change to:
A bit of overzealous const fixing has led to a problem that CYGWIN of all things caught. I'm still trying to figure out why AndLinux and Arthmoor both missed this one.
Danger: High - Code won't finish compiling (sometimes?).
Found by: Igabod
Fixed by: Kayle
---
Mud.h
Find:
const char *fread_word args( ( FILE * fp ) ); const char *fread_line args( ( FILE * fp ) );
Change to:
char *fread_word args( ( FILE * fp ) ); char *fread_line args( ( FILE * fp ) );
db.c
Find:
const char *fread_line( FILE * fp )
Change to:
char *fread_line( FILE * fp )
Find:
const char *fread_word( FILE * fp )
Change to:
char *fread_word( FILE * fp )
A bit of overzealous const fixing has led to a problem that CYGWIN of all things caught. I'm still trying to figure out why AndLinux and Arthmoor both missed this one.
Pages:<< prev 1 next >>