diff options
author | dillon <dillon@FreeBSD.org> | 1999-01-28 17:32:05 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1999-01-28 17:32:05 +0000 |
commit | ca558df378372b5884ff8069ed7ca0828d9b8de1 (patch) | |
tree | 437f037c49b94ed358c6bed90d5be63adb743843 /sys/dev/syscons/syscons.c | |
parent | 789691e908f6bc573894f86b17cf9616bce158c7 (diff) | |
download | FreeBSD-src-ca558df378372b5884ff8069ed7ca0828d9b8de1.zip FreeBSD-src-ca558df378372b5884ff8069ed7ca0828d9b8de1.tar.gz |
Fix warnings related to -Wall -Wcast-qual
Diffstat (limited to 'sys/dev/syscons/syscons.c')
-rw-r--r-- | sys/dev/syscons/syscons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c index e269df0..18d376c 100644 --- a/sys/dev/syscons/syscons.c +++ b/sys/dev/syscons/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.294 1999/01/26 09:58:37 yokota Exp $ + * $Id: syscons.c,v 1.295 1999/01/28 01:59:48 dillon Exp $ */ #include "sc.h" @@ -172,7 +172,9 @@ static long scrn_time_stamp; static int saver_mode = CONS_LKM_SAVER; /* LKM/user saver */ static int run_scrn_saver = FALSE; /* should run the saver? */ static int scrn_idle = FALSE; /* about to run the saver */ +#if NSPLASH > 0 static int scrn_saver_failed; +#endif u_char scr_map[256]; u_char scr_rmap[256]; static int initial_video_mode; /* initial video mode # */ |