From: weingart Date: Mon, 7 Apr 1997 02:07:06 +0000 (+0000) Subject: Fix device name. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=98f54fa124f4b4a7152d7d62202d71f66ea08ea6;p=openbsd Fix device name. --- diff --git a/sys/arch/i386/stand/libsa/dev_i386.c b/sys/arch/i386/stand/libsa/dev_i386.c index c80d9268af1..a59750fc2c4 100644 --- a/sys/arch/i386/stand/libsa/dev_i386.c +++ b/sys/arch/i386/stand/libsa/dev_i386.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dev_i386.c,v 1.4 1997/04/06 20:08:25 mickey Exp $ */ +/* $OpenBSD: dev_i386.c,v 1.5 1997/04/07 02:07:06 weingart Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -95,8 +95,17 @@ devboot(bootdev, p) else *p++ = 'f'; *p++ = 'd'; +#ifndef _TEST + *p++ = '('; +#endif *p++ = '0' + (bootdev & 0x7f); +#ifndef _TEST + *p++ = ','; +#endif *p++ = 'a'; +#ifndef _TEST + *p++ = ')'; +#endif *p = '\0'; }