From 98f54fa124f4b4a7152d7d62202d71f66ea08ea6 Mon Sep 17 00:00:00 2001 From: weingart Date: Mon, 7 Apr 1997 02:07:06 +0000 Subject: [PATCH] Fix device name. --- sys/arch/i386/stand/libsa/dev_i386.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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'; } -- 2.20.1