Add missing 'static' keyword to keep build at WARNS=6 happy.

MFC after:	1 month
This commit is contained in:
Ed Schouten 2015-08-15 08:29:13 +00:00
parent 347a39b4a6
commit ee79e27438
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286797

View File

@ -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;