diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2007-09-11 13:39:35 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2007-09-11 13:39:35 +0000 |
commit | ca08fa30b3ab02619e3cdee1f4ffd7fae6833fd1 (patch) | |
tree | 51e8b8caf8623fba8a3acc9ce731036f9376a41c /sys/dev/usb/hid.c | |
parent | 023f148f597a0a1455b3cd62cf30553f5dbc28b5 (diff) |
KNF
prompted and "much better" by marco@, ok pyr@
Diffstat (limited to 'sys/dev/usb/hid.c')
-rw-r--r-- | sys/dev/usb/hid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/hid.c b/sys/dev/usb/hid.c index 89439266542..b877251d317 100644 --- a/sys/dev/usb/hid.c +++ b/sys/dev/usb/hid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hid.c,v 1.19 2007/09/09 01:00:35 fgsch Exp $ */ +/* $OpenBSD: hid.c,v 1.20 2007/09/11 13:39:34 gilles Exp $ */ /* $NetBSD: hid.c,v 1.23 2002/07/11 21:14:25 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/hid.c,v 1.11 1999/11/17 22:33:39 n_hibma Exp $ */ @@ -95,7 +95,7 @@ hid_start_parse(void *d, int len, enum hid_kind kind) { struct hid_data *s; - s = malloc(sizeof *s, M_TEMP, M_WAITOK|M_ZERO); + s = malloc(sizeof *s, M_TEMP, M_WAITOK | M_ZERO); if (s == NULL) panic("hid_start_parse"); |