diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-03-27 18:32:54 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-03-27 18:32:54 +0000 |
commit | c82690db47e0c70480ba07034e838d9c6a887fae (patch) | |
tree | 90c98d0cd12d64ed1a2844fed3cafd1196fc4c90 /sys/arch/amd64 | |
parent | 76c5771f18a5253915a38e7f2f2ab296a5c73584 (diff) |
add a newline to an error printf
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/acpi_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/acpi_machdep.c b/sys/arch/amd64/amd64/acpi_machdep.c index bcb711dd164..17d8fb205ef 100644 --- a/sys/arch/amd64/amd64/acpi_machdep.c +++ b/sys/arch/amd64/amd64/acpi_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi_machdep.c,v 1.77 2017/03/27 18:24:08 deraadt Exp $ */ +/* $OpenBSD: acpi_machdep.c,v 1.78 2017/03/27 18:32:53 mlarkin Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -395,7 +395,7 @@ acpi_sleep_cpu(struct acpi_softc *sc, int state) #ifdef HIBERNATE if (state == ACPI_STATE_S4) { if (hibernate_suspend()) { - printf("%s: hibernate_suspend failed", + printf("%s: hibernate_suspend failed\n", DEVNAME(sc)); return (ECANCELED); } |