summaryrefslogtreecommitdiffstats
path: root/lib/libusbhid/usage.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2007-03-20 03:42:52 +0000
committertedu <tedu@openbsd.org>2007-03-20 03:42:52 +0000
commit46f282f90df8524d71ca6a452d3b07af527e59b2 (patch)
treece31478fe39144f8b1569c12b66f43a69e63704a /lib/libusbhid/usage.c
parentdocument softraid and bioctl creation of softraid (diff)
downloadwireguard-openbsd-46f282f90df8524d71ca6a452d3b07af527e59b2.tar.xz
wireguard-openbsd-46f282f90df8524d71ca6a452d3b07af527e59b2.zip
remove some bogus *p from charles longeau
ok deraadt millert
Diffstat (limited to 'lib/libusbhid/usage.c')
-rw-r--r--lib/libusbhid/usage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libusbhid/usage.c b/lib/libusbhid/usage.c
index 10042f7a55b..6dc8718477a 100644
--- a/lib/libusbhid/usage.c
+++ b/lib/libusbhid/usage.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usage.c,v 1.11 2006/10/27 15:26:25 deraadt Exp $ */
+/* $OpenBSD: usage.c,v 1.12 2007/03/20 03:42:52 tedu Exp $ */
/* $NetBSD: usage.c,v 1.1 2001/12/28 17:45:27 augustss Exp $ */
/*
@@ -93,7 +93,7 @@ hid_start(const char *hidname)
break;
if (line[0] == '#')
continue;
- for (p = line; *p && isspace(*p); p++)
+ for (p = line; isspace(*p); p++)
;
if (!*p)
continue;