aboutsummaryrefslogtreecommitdiff
path: root/util-linux/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 /util-linux/fbset.c
parent507891998164b8548f5aebfc54e759a3fbbd3bde (diff)
downloadbusybox-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 41c7f9796..5ccd80e79 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 */