diff rogue4/state.c @ 242:b49d8b963df3

Fix some functions not returning the right type.
author John "Elwin" Edwards
date Sat, 19 Mar 2016 16:18:58 -0400
parents c10fe421b8fb
children d3968e9cb98d
line wrap: on
line diff
--- a/rogue4/state.c	Sat Mar 12 14:36:25 2016 -0500
+++ b/rogue4/state.c	Sat Mar 19 16:18:58 2016 -0400
@@ -902,6 +902,8 @@
     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 @@
     }
 }
 
-int
+void
 rs_fix_thing_list(THING *list)
 {
     THING *item;