Page MenuHomeFreeBSD

style(9)ify boot2.c
ClosedPublic

Authored by benno on Feb 14 2018, 12:27 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Sep 30, 6:03 AM
Unknown Object (File)
Sep 13 2025, 7:24 PM
Unknown Object (File)
Sep 13 2025, 7:14 PM
Unknown Object (File)
Sep 13 2025, 7:05 PM
Unknown Object (File)
Sep 11 2025, 3:13 AM
Unknown Object (File)
Sep 7 2025, 12:31 AM
Unknown Object (File)
Aug 2 2025, 9:59 AM
Unknown Object (File)
Jul 5 2025, 12:45 PM
Subscribers

Details

Summary

Style fixup for boot2.c.

There's a one code change in parse() so the code fits inside 80 columns.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

So style(9) requires a blank line at the start of a function with no local variables. I tagged a couple, but there are more.

stand/i386/boot2/boot2.c
149 ↗(On Diff #39291)

Blank line at start of function rule

189 ↗(On Diff #39291)

blank line

351 ↗(On Diff #39291)

this, and others, need parse(void)

Added blank lines to the start of functions without variable declarations.
Removed assignments from variable declarations (except one that was static).

lgtm, though I must admit to review fatigue

This revision is now accepted and ready to land.Feb 14 2018, 1:09 AM
This revision was automatically updated to reflect the committed changes.
In D14366#301004, @imp wrote:

So style(9) requires a blank line at the start of a function with no local variables. I tagged a couple, but there are more.

I think you could remove that clause from style(9) without (much? any?) objection, if you wanted to go through that whole mess to gather consensus.