diff options
author | Monsta <[email protected]> | 2014-10-28 17:15:20 +0300 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-23 13:52:33 +0100 |
commit | 6f20a4ebbe6a37be428e72ea0d3286f61671c8ec (patch) | |
tree | e65371a9c6c117a2b2a4e1ee6879ac689bb5a44a /src/eom-sidebar.c | |
parent | 46c44a46efca3d0b0be143c2d1e71ee018489c9f (diff) | |
download | eom-6f20a4ebbe6a37be428e72ea0d3286f61671c8ec.tar.bz2 eom-6f20a4ebbe6a37be428e72ea0d3286f61671c8ec.tar.xz |
use guint for signals arrays, and zero-initialize them
Diffstat (limited to 'src/eom-sidebar.c')
-rw-r--r-- | src/eom-sidebar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eom-sidebar.c b/src/eom-sidebar.c index 0818bd0..d8a479c 100644 --- a/src/eom-sidebar.c +++ b/src/eom-sidebar.c @@ -52,7 +52,7 @@ enum { SIGNAL_LAST }; -static gint signals[SIGNAL_LAST]; +static guint signals[SIGNAL_LAST] = { 0 }; struct _EomSidebarPrivate { GtkWidget *notebook; |