summaryrefslogtreecommitdiff
path: root/namedev.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 /namedev.h
parent3a8c51a771b5c67d5cf0002980254ef175668630 (diff)
[PATCH] stop using mode_t as different libcs define it in different ways :(
Diffstat (limited to 'namedev.h')
-rw-r--r--namedev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/namedev.h b/namedev.h
index 9cff3710d4..a0cdba6b16 100644
--- a/namedev.h
+++ b/namedev.h
@@ -74,7 +74,7 @@ struct perm_device {
char name[NAME_SIZE];
char owner[OWNER_SIZE];
char group[GROUP_SIZE];
- mode_t mode;
+ unsigned int mode;
};
extern struct list_head config_device_list;