From: rofl0r Date: Fri, 3 Jan 2014 10:27:46 +0000 (+0100) Subject: fanotify.c: fix typo in header inclusion X-Git-Tag: v0.9.15~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9e91398b282f3ca3541da71c51adb9958f3e9cc2;p=oweals%2Fmusl.git fanotify.c: fix typo in header inclusion the header is included only as a guard to check that the declaration and definition match, so the typo didn't cause any breakage aside from omitting this check. --- diff --git a/src/linux/fanotify.c b/src/linux/fanotify.c index 73f941de..1f4ef93b 100644 --- a/src/linux/fanotify.c +++ b/src/linux/fanotify.c @@ -1,5 +1,5 @@ #include "syscall.h" -#include +#include int fanotify_init(unsigned flags, unsigned event_f_flags) {