mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Minor style(9) before possible larger commits.
This commit is contained in:
parent
e5624708b1
commit
46433fccd1
1 changed files with 2 additions and 4 deletions
|
|
@ -49,12 +49,10 @@ static void
|
|||
acpi_init(void)
|
||||
{
|
||||
acpifd = open(ACPIDEV, O_RDWR);
|
||||
if (acpifd == -1){
|
||||
if (acpifd == -1)
|
||||
acpifd = open(ACPIDEV, O_RDONLY);
|
||||
}
|
||||
if (acpifd == -1){
|
||||
if (acpifd == -1)
|
||||
err(EX_OSFILE, ACPIDEV);
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue