summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-06-29 17:16:36 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-06-29 17:16:36 +0000
commitc0c9686a0b25d4e9ad117f1872573ab66fab547a (patch)
tree18d1a7f9853b5e603f98e744a712ddc988de1d00
parent36cf4afa6a6eadd9e6b1e49fe14adfc242ddcc8b (diff)
please attempt to match the style of the code
-rw-r--r--usr.bin/usbhidaction/usbhidaction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/usbhidaction/usbhidaction.c b/usr.bin/usbhidaction/usbhidaction.c
index 5f14949d134..92e47122d78 100644
--- a/usr.bin/usbhidaction/usbhidaction.c
+++ b/usr.bin/usbhidaction/usbhidaction.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbhidaction.c,v 1.13 2010/06/29 17:15:23 ckuethe Exp $ */
+/* $OpenBSD: usbhidaction.c,v 1.14 2010/06/29 17:16:35 deraadt Exp $ */
/* $NetBSD: usbhidaction.c,v 1.7 2002/01/18 14:38:59 augustss Exp $ */
/*
@@ -400,10 +400,10 @@ docmd(struct command *cmd, int value, const char *hid, int argc, char **argv)
size_t len;
int n, r;
- if (cmd->action == NULL){
+ if (cmd->action == NULL) {
if (verbose)
printf("no action for device %s value %d\n",
- hid, value);
+ hid, value);
return;
}
for (p = cmd->action, q = cmdbuf; *p && q < &cmdbuf[SIZE-1]; ) {