aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2023-03-31 18:45:04 +0000
committerEd Maste <emaste@FreeBSD.org>2023-03-31 18:48:39 +0000
commitd860991a7289c673d19467ea7faae46df7681db1 (patch)
tree53f73ada26fb8c69794f14481934644ca98c353f
parent4358928e235c1e188ad6b4650d78bcceb225b909 (diff)
downloadsrc-d860991a7289c673d19467ea7faae46df7681db1.tar.gz
src-d860991a7289c673d19467ea7faae46df7681db1.zip
kqueue: tidy up indentation in man page example
Fixes: e07b0c12ba64 ("[patch][doc] Fix EXAMPLE in kqueue(2)") Sponsored by: The FreeBSD Foundation
-rw-r--r--lib/libc/sys/kqueue.23
1 files changed, 1 insertions, 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