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;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to