Mark global functions and/or variables in moused(8) static where possible.
This allows compilers and static analyzers to do more thorough analysis.
This commit is contained in:
parent
4d4fda8051
commit
7a106fe473
@ -174,14 +174,14 @@ typedef struct {
|
|||||||
|
|
||||||
/* global variables */
|
/* global variables */
|
||||||
|
|
||||||
int debug = 0;
|
static int debug = 0;
|
||||||
int nodaemon = FALSE;
|
static int nodaemon = FALSE;
|
||||||
int background = FALSE;
|
static int background = FALSE;
|
||||||
int paused = FALSE;
|
static int paused = FALSE;
|
||||||
int identify = ID_NONE;
|
static int identify = ID_NONE;
|
||||||
int extioctl = FALSE;
|
static int extioctl = FALSE;
|
||||||
const char *pidfile = "/var/run/moused.pid";
|
static const char *pidfile = "/var/run/moused.pid";
|
||||||
struct pidfh *pfh;
|
static struct pidfh *pfh;
|
||||||
|
|
||||||
#define SCROLL_NOTSCROLLING 0
|
#define SCROLL_NOTSCROLLING 0
|
||||||
#define SCROLL_PREPARE 1
|
#define SCROLL_PREPARE 1
|
||||||
|
Loading…
Reference in New Issue
Block a user