artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fa3c40
)
Add missing leading colon to error message.
author
anton
<anton@openbsd.org>
Thu, 26 Aug 2021 10:29:02 +0000
(10:29 +0000)
committer
anton
<anton@openbsd.org>
Thu, 26 Aug 2021 10:29:02 +0000
(10:29 +0000)
sys/dev/usb/ucc.c
patch
|
blob
|
history
diff --git
a/sys/dev/usb/ucc.c
b/sys/dev/usb/ucc.c
index
552c1c2
..
ade5199
100644
(file)
--- a/
sys/dev/usb/ucc.c
+++ b/
sys/dev/usb/ucc.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: ucc.c,v 1.1
1 2021/08/25 05:48:50
anton Exp $ */
+/* $OpenBSD: ucc.c,v 1.1
2 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;
}