git: d860991a7289 - main - kqueue: tidy up indentation in man page example
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 31 Mar 2023 18:48:50 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=d860991a7289c673d19467ea7faae46df7681db1
commit d860991a7289c673d19467ea7faae46df7681db1
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-03-31 18:45:04 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-03-31 18:48:39 +0000
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