Page MenuHomeFreeBSD

efivar: use bool for booleans
ClosedPublic

Authored by imp on Apr 7 2021, 5:59 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 25, 5:33 PM
Unknown Object (File)
Thu, Apr 25, 1:47 PM
Unknown Object (File)
Thu, Apr 18, 6:43 AM
Unknown Object (File)
Mar 15 2024, 8:44 PM
Unknown Object (File)
Mar 15 2024, 8:44 PM
Unknown Object (File)
Mar 15 2024, 8:43 PM
Unknown Object (File)
Mar 12 2024, 1:12 AM
Unknown Object (File)
Mar 8 2024, 4:12 AM
Subscribers
None

Details

Summary

Rather than int flags we ++, use booleans for all command line args.
No functional change intended.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

imp requested review of this revision.Apr 7 2021, 5:59 AM
imp created this revision.
usr.sbin/efivar/efivar.c
388

I guess expressions like this might be why int was used? I think this should still work with bools though.

415

These are still using arithmetic expressions.

Address markj's comments. Cast the bools to ints to add them, though this 'works' today.

markj added inline comments.
usr.sbin/efivar/efivar.c
409
This revision is now accepted and ready to land.Apr 9 2021, 1:53 PM
This revision was automatically updated to reflect the committed changes.