diff options
author | 1997-10-06 17:36:43 +0000 | |
---|---|---|
committer | 1997-10-06 17:36:43 +0000 | |
commit | eb799a6a2df9911228bd0deef6fb4f011d2fdeca (patch) | |
tree | 6be8587f43c67ef3926f8c87d621fc4c1edfdaca /sys | |
parent | db_{read,write}_bytes loop end condition bad (unsigned >= 0 -> always TRUE) (diff) | |
download | wireguard-openbsd-eb799a6a2df9911228bd0deef6fb4f011d2fdeca.tar.xz wireguard-openbsd-eb799a6a2df9911228bd0deef6fb4f011d2fdeca.zip |
better amp message
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/stand/libsa/machdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/machdep.c b/sys/arch/i386/stand/libsa/machdep.c index fad04e8b67b..4f1a249dd77 100644 --- a/sys/arch/i386/stand/libsa/machdep.c +++ b/sys/arch/i386/stand/libsa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.15 1997/09/29 03:48:03 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.16 1997/10/06 17:36:43 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -149,12 +149,12 @@ machdep() #ifdef BOOT_APM if ((BIOS_vars.bios_apm_detail = apm_check())) { - printf("apm: "); + printf("apm0"); apm_disconnect(); if (apm_connect() != 0) - printf("connect error\n"); + printf(": connect error\n"); #ifdef DEBUG - printf("%x text=%x/%x[%x] data=%x[%x] @ %x", + printf(": %x text=%x/%x[%x] data=%x[%x] @ %x", BIOS_vars.bios_apm_detail, BIOS_vars.bios_apm_code32_base, BIOS_vars.bios_apm_code16_base, @@ -163,7 +163,7 @@ machdep() BIOS_vars.bios_apm_data_len, BIOS_vars.bios_apm_entry); #else - printf("present"); + printf(" detected"); #endif putchar('\n'); } |