From ee79e274380eced29cfc2bd94aad48cbec0508f6 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sat, 15 Aug 2015 08:29:13 +0000 Subject: [PATCH] Add missing 'static' keyword to keep build at WARNS=6 happy. MFC after: 1 month --- sys/teken/demo/teken_demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/teken/demo/teken_demo.c b/sys/teken/demo/teken_demo.c index 08323dc1a400..42747ce36b94 100644 --- a/sys/teken/demo/teken_demo.c +++ b/sys/teken/demo/teken_demo.c @@ -72,7 +72,7 @@ struct pixel { #define NCOLS 80 #define NROWS 24 -struct pixel buffer[NCOLS][NROWS]; +static struct pixel buffer[NCOLS][NROWS]; static int ptfd;