From: Michael Kerrisk Date: Sat, 8 Jun 2019 10:27:01 +0000 (+0200) Subject: fanotify.7: Minor code consistency clean-ups X-Git-Tag: man-pages-5.02~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f10bd3260a54d76cd9aac8ec6ac9921b49e8dd1;p=thirdparty%2Fman-pages.git fanotify.7: Minor code consistency clean-ups Signed-off-by: Michael Kerrisk --- diff --git a/man7/fanotify.7 b/man7/fanotify.7 index dfc2b4c501..5b9d5ff95d 100644 --- a/man7/fanotify.7 +++ b/man7/fanotify.7 @@ -989,14 +989,14 @@ main(int argc, char *argv[]) #define BUF_SIZE 256 -int main(int argc, char **argv) +int +main(int argc, char **argv) { int fd, ret, event_fd; ssize_t len, path_len; char path[PATH_MAX]; char procfd_path[PATH_MAX]; char events_buf[BUF_SIZE]; - struct file_handle *file_handle; struct fanotify_event_metadata *metadata; struct fanotify_event_info_fid *fid; @@ -1066,14 +1066,16 @@ int main(int argc, char **argv) event_fd = open_by_handle_at(AT_FDCWD, file_handle, O_RDONLY); if (ret == \-1 && errno == ESTALE) { - printf("File handle is no longer valid. File has been deleted\e\n"); + printf("File handle is no longer valid. " + "File has been deleted\e\n"); continue; } else if (ret == \-1) { perror("open_by_handle_at"); exit(EXIT_FAILURE); } - snprintf(procfd_path, sizeof(procfd_path), "/proc/self/fd/%d", event_fd); + snprintf(procfd_path, sizeof(procfd_path), "/proc/self/fd/%d", + event_fd); /* Retrieve and print the path of the modified dentry */