From d860991a7289c673d19467ea7faae46df7681db1 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 31 Mar 2023 14:45:04 -0400 Subject: [PATCH] kqueue: tidy up indentation in man page example Fixes: e07b0c12ba64 ("[patch][doc] Fix EXAMPLE in kqueue(2)") Sponsored by: The FreeBSD Foundation --- lib/libc/sys/kqueue.2 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libc/sys/kqueue.2 b/lib/libc/sys/kqueue.2 index c263fa550244..a2470696d4df 100644 --- a/lib/libc/sys/kqueue.2 +++ b/lib/libc/sys/kqueue.2 @@ -771,8 +771,7 @@ main(int argc, char **argv) errx(EXIT_FAILURE, "Event error: %s", strerror(event.data)); else printf("Something was written in '%s'\en", argv[1]); -} - + } } } .Ed