Fix some uninitialized variable warnings

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23124 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
John Ralls
2013-08-03 21:47:35 +00:00
parent 2b2838c834
commit a96929969c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -571,7 +571,7 @@ static void
menuitem_response_cb (GtkMenuItem *item, gpointer *user_data )
{
const gchar *label_text;
GtkTreeIter iter, iter_now;
GtkTreeIter iter, iter_now = {0, NULL, NULL, NULL};
gboolean valid;
gint active = 1;
gint active_now = 1;
+1 -1
View File
@@ -3216,7 +3216,7 @@ static void
gtv_sr_help (GncTreeViewSplitReg *view, GtkCellRenderer *cr, ViewCol viewcol, RowDepth depth)
{
GncTreeModelSplitReg *model;
gchar *help;
gchar *help = NULL;
const gchar *current_string;
ENTER("Help Viewcol is %d and depth is %d", viewcol, depth);