summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2021-05-02 04:21:14 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2021-05-02 04:21:14 +0000
commitfe293c384326ccb9500184854beb846c00ccd6b2 (patch)
tree517e325f26318c78b471a47472e9be2b869265ce /sys/arch
parentdd08fdfc8ac27cf66cbcb080cc8a17090b17129f (diff)
fix logic error in boot()
ok deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/riscv64/riscv64/machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/riscv64/riscv64/machdep.c b/sys/arch/riscv64/riscv64/machdep.c
index 90da72abc14..d418d10383c 100644
--- a/sys/arch/riscv64/riscv64/machdep.c
+++ b/sys/arch/riscv64/riscv64/machdep.c
@@ -335,7 +335,7 @@ boot(int howto)
cold = 1;
if ((howto & RB_DUMP) != 0)
- //dumpsys();//XXX no dump so far. CMPE295
+ printf("no dump so far\n");
haltsys:
config_suspend_all(DVACT_POWERDOWN);