diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2023-03-31 12:07:55 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2023-03-31 12:07:55 +0000 |
commit | feb32b26b8f2817ec56cbe4e7f583cd497f8378e (patch) | |
tree | 250bcccd966699cc042dbf17c7d62bbfbe25f712 /sys/dev/fdt | |
parent | 61627f5f52da250a7533bf0c36a9afe78cc2841a (diff) |
Flip label separators to fix previous
-gpiokeys0 at mainbus0, "PWR Button"
+gpiokeys0 at mainbus0: "PWR Button"
OK patrick
Diffstat (limited to 'sys/dev/fdt')
-rw-r--r-- | sys/dev/fdt/gpiokeys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdt/gpiokeys.c b/sys/dev/fdt/gpiokeys.c index 5a5ae22a1c0..041c75e1704 100644 --- a/sys/dev/fdt/gpiokeys.c +++ b/sys/dev/fdt/gpiokeys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gpiokeys.c,v 1.2 2022/11/07 20:28:23 patrick Exp $ */ +/* $OpenBSD: gpiokeys.c,v 1.3 2023/03/31 12:07:54 kn Exp $ */ /* * Copyright (c) 2021 Klemens Nanni <kn@openbsd.org> * @@ -140,7 +140,7 @@ gpiokeys_attach(struct device *parent, struct device *self, void *aux) } if (label) { - printf("%s \"%s\"", have_labels ? ":" : ",", label); + printf("%s \"%s\"", have_labels ? "," : ":", label); free(label, M_TEMP, len); have_labels = 1; } |