mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
- Replace the bandaid introduced in revision 1.110 with
a better solution. - Add braces for a ``for'' statement containing a single multi-line statement.
This commit is contained in:
parent
8dcfdf3f80
commit
280759e75e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97655
@ -524,7 +524,8 @@ sysctl_kern_malloc(SYSCTL_HANDLER_ARGS)
|
||||
p += len;
|
||||
|
||||
first = 1;
|
||||
for (i = 0; i < 32 /* 8 * sizeof(type->ks_size) */; i++)
|
||||
for (i = 0; i < sizeof(kmemzones) / sizeof(kmemzones[0]) - 1;
|
||||
i++) {
|
||||
if (type->ks_size & (1 << i)) {
|
||||
if (first)
|
||||
len = snprintf(p, curline, " ");
|
||||
@ -540,6 +541,7 @@ sysctl_kern_malloc(SYSCTL_HANDLER_ARGS)
|
||||
|
||||
first = 0;
|
||||
}
|
||||
}
|
||||
|
||||
len = snprintf(p, 2, "\n");
|
||||
p += len;
|
||||
|
Loading…
Reference in New Issue
Block a user