diff options
author | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-05-20 15:10:22 +0100 |
---|---|---|
committer | Marco Barisione <marco.barisione@collabora.co.uk> | 2013-08-20 11:11:36 +0100 |
commit | 14b674683882c7dee0e65a2ba46d27d7301bc47d (patch) | |
tree | 6d6685ce9b2d4942f0b29d47dca3dfa84e8ea580 /tp-account-widgets | |
parent | 5a0dc3ff8a97c7d60de38ec62d03e3ee6f221fa5 (diff) | |
download | telepathy-account-widgets-14b674683882c7dee0e65a2ba46d27d7301bc47d.tar.gz |
debug.c: make the private variable flag_to_keys static
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'tp-account-widgets')
-rw-r--r-- | tp-account-widgets/tpaw-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tp-account-widgets/tpaw-debug.c b/tp-account-widgets/tpaw-debug.c index 0e05a2d2..c94718e5 100644 --- a/tp-account-widgets/tpaw-debug.c +++ b/tp-account-widgets/tpaw-debug.c @@ -55,7 +55,7 @@ tpaw_debug_flag_is_set (TpawDebugFlags flag) return (flag & flags) != 0; } -GHashTable *flag_to_keys = NULL; +static GHashTable *flag_to_keys = NULL; static const gchar * debug_flag_to_key (TpawDebugFlags flag) |