From: krw Date: Tue, 30 Apr 2024 17:12:19 +0000 (+0000) Subject: Add '\n' to DPRINTF() string that used to be a panic() string. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ab0363c32c56eb9055d8521c868e670bd813bafc;p=openbsd Add '\n' to DPRINTF() string that used to be a panic() string. ok mlarkin@ --- diff --git a/sys/kern/subr_hibernate.c b/sys/kern/subr_hibernate.c index ec42fe2906a..2fe5eb2cbfc 100644 --- a/sys/kern/subr_hibernate.c +++ b/sys/kern/subr_hibernate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_hibernate.c,v 1.138 2022/09/03 18:17:15 mlarkin Exp $ */ +/* $OpenBSD: subr_hibernate.c,v 1.139 2024/04/30 17:12:19 krw Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt @@ -1134,7 +1134,7 @@ hibernate_resume(void) if (hibernate_block_io(&hib, hib.sig_offset, DEV_BSIZE, (vaddr_t)&disk_hib, 0)) { - DPRINTF("error in hibernate read"); + DPRINTF("error in hibernate read\n"); splx(s); return; }