diff options
author | 2014-12-07 13:12:05 +0000 | |
---|---|---|
committer | 2014-12-07 13:12:05 +0000 | |
commit | 08fe8d783d1faabf865b2fb449b059dabc7e7824 (patch) | |
tree | ddb1f71116c105caf11694e1605110f1114cd6c4 | |
parent | Probe the keyboard for its dip switches also if it is the console keyboard, (diff) | |
download | wireguard-openbsd-08fe8d783d1faabf865b2fb449b059dabc7e7824.tar.xz wireguard-openbsd-08fe8d783d1faabf865b2fb449b059dabc7e7824.zip |
Avoid extra space in dmesg
-rw-r--r-- | sys/arch/sgi/hpc/zs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/hpc/zs.c b/sys/arch/sgi/hpc/zs.c index dc2a632971d..1f452b0a70a 100644 --- a/sys/arch/sgi/hpc/zs.c +++ b/sys/arch/sgi/hpc/zs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zs.c,v 1.12 2014/05/19 21:18:42 miod Exp $ */ +/* $OpenBSD: zs.c,v 1.13 2014/12/07 13:12:05 miod Exp $ */ /* $NetBSD: zs.c,v 1.37 2011/02/20 07:59:50 matt Exp $ */ /*- @@ -346,7 +346,7 @@ zs_print(void *aux, const char *name) struct zsc_attach_args *args = aux; if (name != NULL) - printf("%s: ", name); + printf("%s:", name); if (args->channel != -1) printf(" channel %d", args->channel); |