diff options
author | Eric Andersen | 2001-08-29 19:02:26 +0000 |
---|---|---|
committer | Eric Andersen | 2001-08-29 19:02:26 +0000 |
commit | dcbca62e89a46788de4b32ba3b2a4b5cd725e430 (patch) | |
tree | 8625e627265130f72a02982cbb3c1e7642f1221c /util-linux/fbset.c | |
parent | 507891998164b8548f5aebfc54e759a3fbbd3bde (diff) | |
download | busybox-dcbca62e89a46788de4b32ba3b2a4b5cd725e430.zip busybox-dcbca62e89a46788de4b32ba3b2a4b5cd725e430.tar.gz |
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 '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 41c7f97..5ccd80e 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c @@ -85,7 +85,7 @@ static unsigned int g_options = 0; /* Stuff stolen from the kernel's fb.h */ static const int FBIOGET_VSCREENINFO = 0x4600; static const int FBIOPUT_VSCREENINFO = 0x4601; -#define __u32 unsigned int +#define __u32 u_int32_t struct fb_bitfield { __u32 offset; /* beginning of bitfield */ __u32 length; /* length of bitfield */ |