svn commit: r337890 - head/stand/i386/libi386
Toomas Soome
tsoome at FreeBSD.org
Thu Aug 16 06:50:54 UTC 2018
Author: tsoome
Date: Thu Aug 16 06:50:53 2018
New Revision: 337890
URL: https://svnweb.freebsd.org/changeset/base/337890
Log:
libi386: small style updates in biosdisk
Use break instead of return in for loop, as done earlier. Insert and remove
some blank lines. No functional changes intended.
Modified:
head/stand/i386/libi386/biosdisk.c
Modified: head/stand/i386/libi386/biosdisk.c
==============================================================================
--- head/stand/i386/libi386/biosdisk.c Thu Aug 16 06:38:01 2018 (r337889)
+++ head/stand/i386/libi386/biosdisk.c Thu Aug 16 06:50:53 2018 (r337890)
@@ -306,6 +306,7 @@ bd_print(int verbose)
bdinfo[i].bd_sectorsize);
if ((ret = pager_output(line)) != 0)
break;
+
dev.dd.d_dev = &biosdisk;
dev.dd.d_unit = i;
dev.d_slice = -1;
@@ -317,7 +318,7 @@ bd_print(int verbose)
ret = disk_print(&dev, line, verbose);
disk_close(&dev);
if (ret != 0)
- return (ret);
+ break;
}
}
return (ret);
@@ -385,7 +386,6 @@ bd_open(struct open_file *f, ...)
BD(dev).bd_bcache = NULL;
}
}
-
return (rc);
}
More information about the svn-src-all
mailing list