Remove static from these two. They slipped through the cracks.

MFC After: 1 week
This commit is contained in:
Warner Losh 2016-01-26 18:39:30 +00:00
parent c8719df5f9
commit 545ed21a78
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=294847
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ static struct dsk {
} dsk;
static char cmd[512], cmddup[512], knamebuf[1024];
static const char *kname;
static uint32_t opts;
uint32_t opts;
#if 0
static int comspeed = SIOSPD;
#endif

View File

@ -104,7 +104,7 @@ static struct dsk {
} dsk;
static char cmd[512], cmddup[512], knamebuf[1024];
static const char *kname;
static uint32_t opts;
uint32_t opts;
static struct bootinfo bootinfo;
#if SERIAL
static int comspeed = SIOSPD;