diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-16 21:29:55 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-16 21:29:55 +0000 |
commit | 6bf48704bcf18da98a724b2d954700cc95a8e622 (patch) | |
tree | ad38ff1c7d3f95ec62f1c68e152ac49715ea5018 /sys/arch | |
parent | 2d71d771c7fa865f738320f080d713362c06011b (diff) |
Use printf() in there, not pmon_printf().
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/loongson/loongson/pmon.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/loongson/loongson/pmon.c b/sys/arch/loongson/loongson/pmon.c index 073c650fb51..94b3fb92b01 100644 --- a/sys/arch/loongson/loongson/pmon.c +++ b/sys/arch/loongson/loongson/pmon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmon.c,v 1.3 2010/02/14 22:39:33 miod Exp $ */ +/* $OpenBSD: pmon.c,v 1.4 2010/02/16 21:29:54 miod Exp $ */ /* * Copyright (c) 2009 Miodrag Vallat. @@ -76,12 +76,12 @@ pmon_getenv(const char *var) */ if ((vaddr_t)envstr < CKSEG1_BASE || (vaddr_t)envstr >= CKSSEG_BASE) { - pmon_printf("WARNING! CORRUPTED ENVIRONMENT!\n"); - pmon_printf("Unable to search for %s.\n", var); + printf("WARNING! CORRUPTED ENVIRONMENT!\n"); + printf("Unable to search for %s.\n", var); #ifdef _STANDALONE - pmon_printf("If boot fails, power-cycle the machine.\n"); + printf("If boot fails, power-cycle the machine.\n"); #else - pmon_printf("If the kernel fails to identify the system" + printf("If the kernel fails to identify the system" " type, please boot it again with `-k' option.\n"); #endif |