diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-14 02:04:17 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-14 23:18:33 +0100 |
commit | 45030287af1e8e76b0feb1cfc3011a0ef2b37d0d (patch) | |
tree | 6bec1c78392af4fbe9519064a52db5c182ccc4fb /src/shared/util.h | |
parent | 679bc6cb9016715339aac4ae6b2d5371c6262935 (diff) |
util: the chattr flags field is actually unsigned, judging by kernel sources
Unlike some client code suggests...
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 850019ab9d..e58a17a825 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -1074,7 +1074,7 @@ int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags); int same_fd(int a, int b); -int chattr_fd(int fd, bool b, int mask); -int chattr_path(const char *p, bool b, int mask); +int chattr_fd(int fd, bool b, unsigned mask); +int chattr_path(const char *p, bool b, unsigned mask); #define RLIMIT_MAKE_CONST(lim) ((struct rlimit) { lim, lim }) |