diff options
author | Karel Zak | 2018-10-11 14:22:08 +0200 |
---|---|---|
committer | Karel Zak | 2018-10-11 14:22:08 +0200 |
commit | cdd538e38302eb467c39af4ec8e285b901f89909 (patch) | |
tree | c64177fa92da834f0577c55b65f2f0b10398764b /term-utils | |
parent | agetty: make output more robust (diff) | |
download | kernel-qcow2-util-linux-cdd538e38302eb467c39af4ec8e285b901f89909.tar.gz kernel-qcow2-util-linux-cdd538e38302eb467c39af4ec8e285b901f89909.tar.xz kernel-qcow2-util-linux-cdd538e38302eb467c39af4ec8e285b901f89909.zip |
agetty: don't use __u32
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'term-utils')
-rw-r--r-- | term-utils/agetty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/term-utils/agetty.c b/term-utils/agetty.c index d6703d4f0..59122ca45 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -153,7 +153,7 @@ # define AGETTY_RELOAD_FDNONE -2 /* uninitialized fd */ static int inotify_fd = AGETTY_RELOAD_FDNONE; static int netlink_fd = AGETTY_RELOAD_FDNONE; -static __u32 netlink_groups; +static uint32_t netlink_groups; #endif struct issue { |