Add missing static keyword.

All global variables and functions are marked static. Simply because
this is an enum, doesn't mean we can't do so as well.
This commit is contained in:
Ed Schouten 2011-12-11 19:28:04 +00:00
parent e120624d32
commit 1d23e44c17
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228417

View file

@ -130,7 +130,7 @@ static int labelsoffset = LABELSECTOR;
static int labeloffset = LABELOFFSET;
static int bbsize = BBSIZE;
enum {
static enum {
UNSPEC, EDIT, READ, RESTORE, WRITE, WRITEBOOT
} op = UNSPEC;