aboutsummaryrefslogtreecommitdiff
path: root/fbset.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-29 19:02:26 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-29 19:02:26 +0000
commitdcbca62e89a46788de4b32ba3b2a4b5cd725e430 (patch)
tree8625e627265130f72a02982cbb3c1e7642f1221c /fbset.c
parent507891998164b8548f5aebfc54e759a3fbbd3bde (diff)
downloadbusybox-w32-dcbca62e89a46788de4b32ba3b2a4b5cd725e430.tar.gz
busybox-w32-dcbca62e89a46788de4b32ba3b2a4b5cd725e430.tar.bz2
busybox-w32-dcbca62e89a46788de4b32ba3b2a4b5cd725e430.zip
Standard typing (u_int16_t instead of u16, u_int32_t instead
of u32, etc) cleanups from Laurence Anderson <laurence@zxmail.com>
Diffstat (limited to 'fbset.c')
-rw-r--r--fbset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fbset.c b/fbset.c
index 41c7f9796..5ccd80e79 100644
--- a/fbset.c
+++ b/fbset.c
@@ -85,7 +85,7 @@ static unsigned int g_options = 0;
85/* Stuff stolen from the kernel's fb.h */ 85/* Stuff stolen from the kernel's fb.h */
86static const int FBIOGET_VSCREENINFO = 0x4600; 86static const int FBIOGET_VSCREENINFO = 0x4600;
87static const int FBIOPUT_VSCREENINFO = 0x4601; 87static const int FBIOPUT_VSCREENINFO = 0x4601;
88#define __u32 unsigned int 88#define __u32 u_int32_t
89struct fb_bitfield { 89struct fb_bitfield {
90 __u32 offset; /* beginning of bitfield */ 90 __u32 offset; /* beginning of bitfield */
91 __u32 length; /* length of bitfield */ 91 __u32 length; /* length of bitfield */