summaryrefslogtreecommitdiff
path: root/udev.h
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-02-12 01:29:40 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:32:27 -0700
commitd45ea2b70c0cba69b02dae81d696a8b4c05c1771 (patch)
tree1e06432865ee740dec00f542ced31e44c68824cd /udev.h
parent3a8c51a771b5c67d5cf0002980254ef175668630 (diff)
[PATCH] stop using mode_t as different libcs define it in different ways :(
Diffstat (limited to 'udev.h')
-rw-r--r--udev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev.h b/udev.h
index 108623e059..9e01e40492 100644
--- a/udev.h
+++ b/udev.h
@@ -40,7 +40,7 @@ struct udevice {
char type;
int major;
int minor;
- mode_t mode;
+ unsigned int mode; /* not mode_t due to conflicting definitions in different libcs */
char symlink[NAME_SIZE];
/* fields that help us in building strings */