diff options
author | Monsta <[email protected]> | 2014-10-28 17:42:09 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-24 22:27:35 +0100 |
commit | 23b2b3b0e0f979b123a503c41ecde108e824f437 (patch) | |
tree | 0f49fca590c5c4d3c6b25c3590cf04da9fc52084 /applets/clock/calendar-window.c | |
parent | d37ec4b473b4191f871a02fbb04d915a222ae5ba (diff) | |
download | mate-panel-23b2b3b0e0f979b123a503c41ecde108e824f437.tar.bz2 mate-panel-23b2b3b0e0f979b123a503c41ecde108e824f437.tar.xz |
zero-initialize all signals arrays
Diffstat (limited to 'applets/clock/calendar-window.c')
-rw-r--r-- | applets/clock/calendar-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/clock/calendar-window.c b/applets/clock/calendar-window.c index 2a6de2f1..b19d3e2b 100644 --- a/applets/clock/calendar-window.c +++ b/applets/clock/calendar-window.c @@ -52,11 +52,11 @@ #endif enum { -EDIT_LOCATIONS, -LAST_SIGNAL + EDIT_LOCATIONS, + LAST_SIGNAL }; -static guint signals[LAST_SIGNAL]; +static guint signals[LAST_SIGNAL] = { 0 }; struct _CalendarWindowPrivate { GtkWidget *calendar; |