svn commit: r286797 - head/sys/teken/demo

Ed Schouten ed at FreeBSD.org
Sat Aug 15 08:29:14 UTC 2015


Author: ed
Date: Sat Aug 15 08:29:13 2015
New Revision: 286797
URL: https://svnweb.freebsd.org/changeset/base/286797

Log:
  Add missing 'static' keyword to keep build at WARNS=6 happy.
  
  MFC after:	1 month

Modified:
  head/sys/teken/demo/teken_demo.c

Modified: head/sys/teken/demo/teken_demo.c
==============================================================================
--- head/sys/teken/demo/teken_demo.c	Sat Aug 15 06:34:49 2015	(r286796)
+++ head/sys/teken/demo/teken_demo.c	Sat Aug 15 08:29:13 2015	(r286797)
@@ -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;
 


More information about the svn-src-head mailing list