diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-03 00:45:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-03 00:45:05 +0000 |
commit | 73464ce53d0f83f7661d03ec831a538fb9229507 (patch) | |
tree | 6b0e078a239e15ca77e98394c39c45c61c879535 /util-linux/fbset.c | |
parent | aa95959cb81b72d37ce1f20606f97e064bbd2bfe (diff) | |
download | busybox-w32-73464ce53d0f83f7661d03ec831a538fb9229507.tar.gz busybox-w32-73464ce53d0f83f7661d03ec831a538fb9229507.tar.bz2 busybox-w32-73464ce53d0f83f7661d03ec831a538fb9229507.zip |
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 1aa0a0ac1..7ae010163 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c | |||
@@ -61,7 +61,7 @@ enum { | |||
61 | #endif | 61 | #endif |
62 | }; | 62 | }; |
63 | 63 | ||
64 | static unsigned int g_options = 0; | 64 | static unsigned g_options; |
65 | 65 | ||
66 | /* Stuff stolen from the kernel's fb.h */ | 66 | /* Stuff stolen from the kernel's fb.h */ |
67 | #define FB_ACTIVATE_ALL 64 | 67 | #define FB_ACTIVATE_ALL 64 |