Fix some functions not returning the right type.

This commit is contained in:
John "Elwin" Edwards 2016-03-19 16:18:58 -04:00
parent 2e20820d1b
commit 2d4a66298a
6 changed files with 17 additions and 4 deletions

View file

@ -1813,6 +1813,8 @@ rs_write_traps(FILE *savef, struct trap *trap,int count)
rs_write_coord(savef, trap[n].tr_pos);
rs_write_long(savef, trap[n].tr_flags);
}
return (WRITESTAT);
}
int
@ -2310,7 +2312,7 @@ rs_read_thing_list(int inf, struct linked_list **list)
return(READSTAT);
}
int
void
rs_fix_thing_list(struct linked_list *list)
{
struct linked_list *item;