From 3c89788fa483ebda858ab66797e2834af94b798f Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Tue, 21 Apr 2009 12:52:22 -0400 Subject: Bug 19502 - Sparse warning cleanups This patch makes various things that should be static static, corrects some "return FALSE" where it should be NULL, etc. Signed-off-by: Colin Walters --- tools/dbus-monitor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/dbus-monitor.c') diff --git a/tools/dbus-monitor.c b/tools/dbus-monitor.c index ee03d854..cbd7a489 100644 --- a/tools/dbus-monitor.c +++ b/tools/dbus-monitor.c @@ -195,7 +195,7 @@ usage (char *name, int ecode) exit (ecode); } -dbus_bool_t sigint_received = FALSE; +static dbus_bool_t sigint_received = FALSE; static void sigint_handler (int signum) -- cgit