summaryrefslogtreecommitdiff
path: root/sys/modules/syscons/star
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2001-05-06 05:44:29 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2001-05-06 05:44:29 +0000
commit67d280f3542a2a53b0e58416b964f069c2f578f6 (patch)
tree4306c664be65b145cac87ee5285dfcdc64766c03 /sys/modules/syscons/star
parenteb9fa66a5868f565dffe17d59faf4ef0bf647cde (diff)
Notes
Diffstat (limited to 'sys/modules/syscons/star')
-rw-r--r--sys/modules/syscons/star/star_saver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/syscons/star/star_saver.c b/sys/modules/syscons/star/star_saver.c
index 00088528c8c3..a1f24b89fcc1 100644
--- a/sys/modules/syscons/star/star_saver.c
+++ b/sys/modules/syscons/star/star_saver.c
@@ -59,12 +59,12 @@ star_saver(video_adapter_t *adp, int blank)
sc_softc_t *sc;
scr_stat *scp;
int cell, i;
- char pattern[] = {"...........++++*** "};
+ static u_char pattern[] = {"...........++++*** "};
#ifndef PC98
- char colors[] = {FG_DARKGREY, FG_LIGHTGREY,
+ static char colors[] = {FG_DARKGREY, FG_LIGHTGREY,
FG_WHITE, FG_LIGHTCYAN};
#else
- char colors[] = {FG_BLUE, FG_LIGHTGREY,
+ static char colors[] = {FG_BLUE, FG_LIGHTGREY,
FG_LIGHTGREY, FG_CYAN};
#endif /* PC98 */
static u_short stars[NUM_STARS][2];