diff options
author | Denis Vlasenko | 2007-01-03 00:45:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-01-03 00:45:05 +0000 |
commit | 73464ce53d0f83f7661d03ec831a538fb9229507 (patch) | |
tree | 6b0e078a239e15ca77e98394c39c45c61c879535 /util-linux/fbset.c | |
parent | aa95959cb81b72d37ce1f20606f97e064bbd2bfe (diff) | |
download | busybox-73464ce53d0f83f7661d03ec831a538fb9229507.zip busybox-73464ce53d0f83f7661d03ec831a538fb9229507.tar.gz |
fbset: move variable from data to bss
fsck_minix: fix fallout
Diffstat (limited to 'util-linux/fbset.c')
-rw-r--r-- | util-linux/fbset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index 1aa0a0a..7ae0101 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c @@ -61,7 +61,7 @@ enum { #endif }; -static unsigned int g_options = 0; +static unsigned g_options; /* Stuff stolen from the kernel's fb.h */ #define FB_ACTIVATE_ALL 64 |