From 0cdbe3293731eb6808af54552422545bc0182fae Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 5 Oct 2002 21:57:05 +0000 Subject: [PATCH] Don't be noisy if DIOCWLABEL fails, it's probably because we're writing the first label to the raw disk. Sponsored by: DARPA & NAI Labs. --- sbin/bsdlabel/bsdlabel.c | 3 +-- 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);