Fix a couple of further bugs: missing argument to sprintf() and

"==" used for "=".
This commit is contained in:
Robert Nordier 1999-01-25 23:07:02 +00:00
parent c6a6c9c017
commit ab19eb8230
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: biosdisk.c,v 1.21 1999/01/24 00:12:04 msmith Exp $
* $Id: biosdisk.c,v 1.22 1999/01/24 06:03:44 msmith Exp $
*/
/*
@ -268,7 +268,7 @@ bd_printslice(struct open_disk *od, int offset, char *prefix)
return;
lp =(struct disklabel *)(&buf[0]);
if (lp->d_magic != DISKMAGIC) {
sprintf(line, "%s: bad disklabel\n");
sprintf(line, "bad disklabel\n");
pager_output(line);
return;
}
@ -393,7 +393,7 @@ bd_opendisk(struct open_disk **odp, struct i386_devdesc *dev)
/* Is this a request for the whole disk? */
if (dev->d_kind.biosdisk.slice == -1) {
sector == 0;
sector = 0;
goto unsliced;
}