Skip to content

Commit

Permalink
Merge pull request #861 from LarsGit223/geanyvc-silence-check
Browse files Browse the repository at this point in the history
geanyvc: silence check errors
  • Loading branch information
frlan committed May 15, 2019
2 parents 8982649 + f255b8a commit 82eab52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geanyvc/src/geanyvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ create_commit_message_history_combobox(void)
GtkCellRenderer *renderer;
GtkTreeIter iter;
GtkListStore *store;
GSList *list_item;
GSList *list_item = NULL;
GString *display_message_string;
gchar *display_message;

Expand Down Expand Up @@ -2147,7 +2147,7 @@ load_config(void)
GError *error = NULL;
#endif

gchar **commit_message_history_keys, **ptr;
gchar **commit_message_history_keys, **ptr = NULL;
gchar *commit_message;
GKeyFile *config = g_key_file_new();

Expand Down

0 comments on commit 82eab52

Please sign in to comment.