From b94aaf81d04f87cfcfde76b68876fbc0d27a8deb Mon Sep 17 00:00:00 2001 From: Scott Balneaves Date: Mon, 12 Nov 2012 08:54:33 -0600 Subject: Code audit: fix compile warnings, uninitialized pointer problems --- mate-panel/panel-layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mate-panel/panel-layout.c') diff --git a/mate-panel/panel-layout.c b/mate-panel/panel-layout.c index 76e7747a..99147ae5 100644 --- a/mate-panel/panel-layout.c +++ b/mate-panel/panel-layout.c @@ -162,7 +162,7 @@ panel_layout_append_group_helper (GKeyFile *keyfile, existing_ids = panel_dconf_list_subdirs (dconf_path, TRUE); if (id) { - for (i = 0; existing_ids[i]; i) { + for (i = 0; existing_ids[i]; i++) { if (!strcmp (existing_ids[i], id)) { existing_id = TRUE; } -- cgit v1.2.1