diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-03 22:17:58 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-05-03 22:17:58 +0000 |
commit | 84c7cd688dcabcac70912c189df690cf736c5ec3 (patch) | |
tree | 8386ae6ab21c596037c44021a7270578689f52a9 /sys/dev | |
parent | 574e25e5346a072323ee6caae33aa7e17663a910 (diff) |
Print missing newline if we bail out because of a uid mismatch.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/acpi/bytgpio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/bytgpio.c b/sys/dev/acpi/bytgpio.c index 2053c107c9d..6340f66073e 100644 --- a/sys/dev/acpi/bytgpio.c +++ b/sys/dev/acpi/bytgpio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bytgpio.c,v 1.6 2016/04/30 16:27:58 kettenis Exp $ */ +/* $OpenBSD: bytgpio.c,v 1.7 2016/05/03 22:17:57 kettenis Exp $ */ /* * Copyright (c) 2016 Mark Kettenis * @@ -152,6 +152,7 @@ bytgpio_attach(struct device *parent, struct device *self, void *aux) sc->sc_npins = nitems(byt_sus_pins); break; default: + printf("\n"); return; } |