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

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;