svn commit: r227195 - head/usr.bin/usbhidaction

Ed Schouten ed at FreeBSD.org
Sun Nov 6 08:18:24 UTC 2011


Author: ed
Date: Sun Nov  6 08:18:23 2011
New Revision: 227195
URL: http://svn.freebsd.org/changeset/base/227195

Log:
  Add missing static keywords to usbhidaction(1)

Modified:
  head/usr.bin/usbhidaction/usbhidaction.c

Modified: head/usr.bin/usbhidaction/usbhidaction.c
==============================================================================
--- head/usr.bin/usbhidaction/usbhidaction.c	Sun Nov  6 08:18:17 2011	(r227194)
+++ head/usr.bin/usbhidaction/usbhidaction.c	Sun Nov  6 08:18:23 2011	(r227195)
@@ -64,7 +64,7 @@ struct command {
 	char *name;
 	char *action;
 };
-struct command *commands;
+static struct command *commands;
 
 #define SIZE 4000
 


More information about the svn-src-head mailing list