diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-05 21:57:05 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-10-05 21:57:05 +0000 |
| commit | 0cdbe3293731eb6808af54552422545bc0182fae (patch) | |
| tree | afcd87d7469ba5bba58702479be69d88f7c03b55 /sbin | |
| parent | 1fc1a1ef2a9e9e6fb8cf33b63955c6b6fe4821da (diff) | |
Notes
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 3 | ||||
| -rw-r--r-- | sbin/disklabel/disklabel.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 81efae5584de..dd3e241ca9df 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -468,8 +468,7 @@ writelabel(int f, const char *boot, struct disklabel *lp) * disable after writing. */ flag = 1; - if (ioctl(f, DIOCWLABEL, &flag) < 0) - warn("ioctl DIOCWLABEL"); + (void)ioctl(f, DIOCWLABEL, &flag); if (write(f, boot, lp->d_bbsize) != (int)lp->d_bbsize) { warn("write"); return (1); diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index 81efae5584de..dd3e241ca9df 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -468,8 +468,7 @@ writelabel(int f, const char *boot, struct disklabel *lp) * disable after writing. */ flag = 1; - if (ioctl(f, DIOCWLABEL, &flag) < 0) - warn("ioctl DIOCWLABEL"); + (void)ioctl(f, DIOCWLABEL, &flag); if (write(f, boot, lp->d_bbsize) != (int)lp->d_bbsize) { warn("write"); return (1); |
