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

@ -902,6 +902,8 @@ rs_write_window(FILE *savef, WINDOW *win)
for(row=0;row<height;row++)
for(col=0;col<width;col++)
rs_write_int(savef, mvwinch(win,row,col));
return(WRITESTAT);
}
int
@ -1554,7 +1556,7 @@ rs_fix_thing(THING *t)
}
}
int
void
rs_fix_thing_list(THING *list)
{
THING *item;