diff options
author | 2016-05-03 22:17:57 +0000 | |
---|---|---|
committer | 2016-05-03 22:17:57 +0000 | |
commit | 28c6899af6cc73f8220e9dae851ef65389b992d2 (patch) | |
tree | 44d0a54a74b0fc55e76390a452a307bad04e1943 | |
parent | Fix regression on usermod/userdel by calling getpwnam_shadow(3) and saving (diff) | |
download | wireguard-openbsd-28c6899af6cc73f8220e9dae851ef65389b992d2.tar.xz wireguard-openbsd-28c6899af6cc73f8220e9dae851ef65389b992d2.zip |
Print missing newline if we bail out because of a uid mismatch.
-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; } |