diff options
author | Anton Lindqvist <anton@cvs.openbsd.org> | 2021-08-26 10:29:03 +0000 |
---|---|---|
committer | Anton Lindqvist <anton@cvs.openbsd.org> | 2021-08-26 10:29:03 +0000 |
commit | a77d6a2fe610c3aa8bb8484a9c680b3ed59f8f73 (patch) | |
tree | cd0b23040ca3ddc18512ba600ff5fa52fc127fdd /sys/dev | |
parent | 21f10fdf8f98167ed06fd56e50691c2c46507888 (diff) |
Add missing leading colon to error message.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/ucc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ucc.c b/sys/dev/usb/ucc.c index 552c1c25c46..ade519957f8 100644 --- a/sys/dev/usb/ucc.c +++ b/sys/dev/usb/ucc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ucc.c,v 1.11 2021/08/25 05:48:50 anton Exp $ */ +/* $OpenBSD: ucc.c,v 1.12 2021/08/26 10:29:02 anton Exp $ */ /* * Copyright (c) 2021 Anton Lindqvist <anton@openbsd.org> @@ -171,7 +171,7 @@ ucc_attach(struct device *parent, struct device *self, void *aux) error = ucc_hid_parse(sc, desc, size); if (error) { - printf(" hid error %d\n", error); + printf(": hid error %d\n", error); return; } |