svn commit: r227256 - head/usr.sbin/moused

Ed Schouten ed at FreeBSD.org
Sun Nov 6 19:02:20 UTC 2011


Author: ed
Date: Sun Nov  6 19:02:20 2011
New Revision: 227256
URL: http://svn.freebsd.org/changeset/base/227256

Log:
  Mark global functions and/or variables in moused(8) static where possible.
  
  This allows compilers and static analyzers to do more thorough analysis.

Modified:
  head/usr.sbin/moused/moused.c

Modified: head/usr.sbin/moused/moused.c
==============================================================================
--- head/usr.sbin/moused/moused.c	Sun Nov  6 19:02:13 2011	(r227255)
+++ head/usr.sbin/moused/moused.c	Sun Nov  6 19:02:20 2011	(r227256)
@@ -174,14 +174,14 @@ typedef struct {
 
 /* global variables */
 
-int	debug = 0;
-int	nodaemon = FALSE;
-int	background = FALSE;
-int	paused = FALSE;
-int	identify = ID_NONE;
-int	extioctl = FALSE;
-const char *pidfile = "/var/run/moused.pid";
-struct pidfh *pfh;
+static int	debug = 0;
+static int	nodaemon = FALSE;
+static int	background = FALSE;
+static int	paused = FALSE;
+static int	identify = ID_NONE;
+static int	extioctl = FALSE;
+static const char *pidfile = "/var/run/moused.pid";
+static struct pidfh *pfh;
 
 #define SCROLL_NOTSCROLLING	0
 #define SCROLL_PREPARE		1


More information about the svn-src-all mailing list