Commit 4d8c22150d533cd0f073d3e0a8c65cabe8257e9b

Stefan Sperling 2018-08-19T13:04:19

missing 'static'

diff --git a/tog/tog.c b/tog/tog.c
index 72930de..bd75a79 100644
--- a/tog/tog.c
+++ b/tog/tog.c
@@ -294,7 +294,7 @@ view_open(int nlines, int ncols, int begin_y, int begin_x,
 	return view;
 }
 
-const struct got_error *
+static const struct got_error *
 view_show(struct tog_view *view)
 {
 	const struct got_error *err;
@@ -309,7 +309,7 @@ view_show(struct tog_view *view)
 	return err;
 }
 
-const struct got_error *
+static const struct got_error *
 view_resize(struct tog_view *view)
 {
 	int nlines, ncols;