Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jan 2016 18:39:30 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r294847 - in head/sys/boot: mips/beri/boot2 pc98/boot2
Message-ID:  <201601261839.u0QIdUZ1019437@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Tue Jan 26 18:39:30 2016
New Revision: 294847
URL: https://svnweb.freebsd.org/changeset/base/294847

Log:
  Remove static from these two. They slipped through the cracks.
  
  MFC After: 1 week

Modified:
  head/sys/boot/mips/beri/boot2/boot2.c
  head/sys/boot/pc98/boot2/boot2.c

Modified: head/sys/boot/mips/beri/boot2/boot2.c
==============================================================================
--- head/sys/boot/mips/beri/boot2/boot2.c	Tue Jan 26 18:39:23 2016	(r294846)
+++ head/sys/boot/mips/beri/boot2/boot2.c	Tue Jan 26 18:39:30 2016	(r294847)
@@ -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

Modified: head/sys/boot/pc98/boot2/boot2.c
==============================================================================
--- head/sys/boot/pc98/boot2/boot2.c	Tue Jan 26 18:39:23 2016	(r294846)
+++ head/sys/boot/pc98/boot2/boot2.c	Tue Jan 26 18:39:30 2016	(r294847)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601261839.u0QIdUZ1019437>