chiark / gitweb /
Couple of missing 'static's.
authorSimon Tatham <anakin@pobox.com>
Fri, 1 Jan 2010 19:41:59 +0000 (19:41 +0000)
committerSimon Tatham <anakin@pobox.com>
Fri, 1 Jan 2010 19:41:59 +0000 (19:41 +0000)
[originally from svn r8801]

keen.c
unfinished/group.c

diff --git a/keen.c b/keen.c
index 813318363759925d4ab1a1ab2bd97f234c362916..feee59c5cc3c40e4379b38bdc5ba6116c49a556a 100644 (file)
--- a/keen.c
+++ b/keen.c
@@ -1748,8 +1748,8 @@ static void game_free_drawstate(drawing *dr, game_drawstate *ds)
     sfree(ds);
 }
 
-void draw_tile(drawing *dr, game_drawstate *ds, struct clues *clues,
-              int x, int y, long tile)
+static void draw_tile(drawing *dr, game_drawstate *ds, struct clues *clues,
+                     int x, int y, long tile)
 {
     int w = clues->w /* , a = w*w */;
     int tx, ty, tw, th;
index 142654ceebf19962088fcc4dfa95c5875aca9646..5dcf586366746f412adb24ca90c04a1fb3bf1d55 100644 (file)
@@ -1316,8 +1316,8 @@ static void game_free_drawstate(drawing *dr, game_drawstate *ds)
     sfree(ds);
 }
 
-void draw_tile(drawing *dr, game_drawstate *ds, int x, int y, long tile,
-              long pencil, long error)
+static void draw_tile(drawing *dr, game_drawstate *ds, int x, int y, long tile,
+                     long pencil, long error)
 {
     int w = ds->w /* , a = w*w */;
     int tx, ty, tw, th;