diff options
author | pfg <pfg@FreeBSD.org> | 2016-09-08 15:05:25 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-09-08 15:05:25 +0000 |
commit | 9d0db672c26bc85b783571e241aa1c5c22e3ada6 (patch) | |
tree | e4db690e062e45ce8c000f79156a9277ddf7a087 /sys/boot | |
parent | fe0598a8c44d54e62b481be305baf0afc1789762 (diff) | |
download | FreeBSD-src-9d0db672c26bc85b783571e241aa1c5c22e3ada6.zip FreeBSD-src-9d0db672c26bc85b783571e241aa1c5c22e3ada6.tar.gz |
MFC r303891, r303892:
sys: replace comma with semicolon when pertinent.
Uses of commas instead of a semicolons can easily go undetected. The comma
can serve as a statement separator but this shouldn't be abused when
statements are meant to be standalone.
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/i386/zfsboot/zfsboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/i386/zfsboot/zfsboot.c b/sys/boot/i386/zfsboot/zfsboot.c index 3b09e55..49140d1 100644 --- a/sys/boot/i386/zfsboot/zfsboot.c +++ b/sys/boot/i386/zfsboot/zfsboot.c @@ -576,7 +576,7 @@ main(void) bootinfo.bi_bios_dev = dsk->drive; bootdev = MAKEBOOTDEV(dev_maj[dsk->type], - dsk->slice, dsk->unit, dsk->part), + dsk->slice, dsk->unit, dsk->part); /* Process configuration file */ |