Skip to content

Commit 71fb7b3

Browse files
committed
Merge tag 'fsnotify_for_v6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
Pull fsnotify update from Jan Kara: "This time just one tiny cleanup for fsnotify" * tag 'fsnotify_for_v6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs: fanotify: delete useless parenthesis in FANOTIFY_INLINE_FH macro
2 parents 5efad0a + 1758cd2 commit 71fb7b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/notify/fanotify/fanotify.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ static inline void fanotify_init_event(struct fanotify_event *event,
275275

276276
#define FANOTIFY_INLINE_FH(name, size) \
277277
struct { \
278-
struct fanotify_fh (name); \
278+
struct fanotify_fh name; \
279279
/* Space for object_fh.buf[] - access with fanotify_fh_buf() */ \
280-
unsigned char _inline_fh_buf[(size)]; \
280+
unsigned char _inline_fh_buf[size]; \
281281
}
282282

283283
struct fanotify_fid_event {

0 commit comments

Comments
 (0)