artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b301ac3
)
Add '\n' to DPRINTF() string that used to be a panic() string.
author
krw
<krw@openbsd.org>
Tue, 30 Apr 2024 17:12:19 +0000
(17:12 +0000)
committer
krw
<krw@openbsd.org>
Tue, 30 Apr 2024 17:12:19 +0000
(17:12 +0000)
ok mlarkin@
sys/kern/subr_hibernate.c
patch
|
blob
|
history
diff --git
a/sys/kern/subr_hibernate.c
b/sys/kern/subr_hibernate.c
index
ec42fe2
..
2fe5eb2
100644
(file)
--- a/
sys/kern/subr_hibernate.c
+++ b/
sys/kern/subr_hibernate.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: subr_hibernate.c,v 1.13
8 2022/09/03 18:17:15 mlarkin Exp $
*/
+/* $OpenBSD: subr_hibernate.c,v 1.13
9 2024/04/30 17:12:19 krw Exp $
*/
/*
* Copyright (c) 2011 Ariane van der Steldt <ariane@stack.nl>
@@
-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;
}