aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <colomar.6.4.3@gmail.com>2020-09-03 21:39:56 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-09-05 14:49:42 +0200
commitbbedcb755a9366121142e5b182e2834c4cb35bf2 (patch)
treec33c938c9f2b00c4edabd04d3d48697dc02c39ca
parent284a36798f5b0460d543a4fc61d8a1a7eccdab1a (diff)
downloadman-pages-bbedcb755a9366121142e5b182e2834c4cb35bf2.tar.gz
sysctl.2: Use sizeof consistently
Use ``sizeof`` consistently through all the examples in the following way: - Use the name of the variable instead of its type as argument for ``sizeof``. Rationale: https://www.kernel.org/doc/html/v5.8/process/coding-style.html#allocating-memory Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/sysctl.22
1 files changed, 1 insertions, 1 deletions
diff --git a/man2/sysctl.2 b/man2/sysctl.2
index 65f79516d8..1610604902 100644
--- a/man2/sysctl.2
+++ b/man2/sysctl.2
@@ -154,7 +154,7 @@ main(void)
size_t osnamelth;
int name[] = { CTL_KERN, KERN_OSTYPE };
- memset(&args, 0, sizeof(struct __sysctl_args));
+ memset(&args, 0, sizeof(args));
args.name = name;
args.nlen = sizeof(name)/sizeof(name[0]);
args.oldval = osname;