From 0511502083378313767ec4a6b950d124528c21e4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 23 Sep 2010 15:49:08 +0200 Subject: fanotify: use uint64_t instead of __u64 --- src/missing.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/missing.h b/src/missing.h index defe885ecc..539979e1bd 100644 --- a/src/missing.h +++ b/src/missing.h @@ -93,12 +93,12 @@ static inline int pivot_root(const char *new_root, const char *put_old) { #endif static inline int fanotify_init(unsigned int flags, unsigned int event_f_flags) { - return syscall(__NR_fanotify_init, flags, event_f_flags); + return syscall(__NR_fanotify_init, flags, event_f_flags); } -static inline int fanotify_mark(int fanotify_fd, unsigned int flags, __u64 mask, +static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t mask, int dfd, const char *pathname) { - return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname); + return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname); } #endif -- cgit v1.2.3-54-g00ecf