diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-02 19:17:42 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-02 19:17:42 +0000 |
commit | 85abf6cde397f5913ae857bc44eb020b0827aed3 (patch) | |
tree | a7f6822267b1eaaa2e17fc58d51b0fbe78e7d890 /sys/arch/i386/stand/libsa/machdep.c | |
parent | bb61bacac42a245017122a6a54d61b4ff8a30ea2 (diff) |
s/apm_init/apm_check/ in apm_check() debug printf
Diffstat (limited to 'sys/arch/i386/stand/libsa/machdep.c')
-rw-r--r-- | sys/arch/i386/stand/libsa/machdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/libsa/machdep.c b/sys/arch/i386/stand/libsa/machdep.c index 0ed73ab693e..ca46f5a4246 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.13 1997/08/31 07:54:17 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.14 1997/09/02 19:17:41 mickey Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -87,7 +87,8 @@ apm_check() : "%ecx", "cc"); if (f || BIOS_regs.biosr_bx != 0x504d /* "PM" */ ) { #ifdef DEBUG - printf("apm_init: %x, %x, %x\n", f, BIOS_regs.biosr_bx, detail); + printf("apm_check: %x, %x, %x\n", + f, BIOS_regs.biosr_bx, detail); #endif return 0; } else |