diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-06-07 07:20:44 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2013-06-07 07:20:44 +0000 |
commit | 043d381e7e44c60a72db91d9a29f2898c5b23837 (patch) | |
tree | 0bc5062f8cb54721c1767255e4c6c11a6ab04e86 | |
parent | 1345b496dbb687ef5de04066ddbf4affee4b4cd1 (diff) |
src/template.c: template_compare_id(): fixed constness.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3270 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/template.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2013-06-07 + + * src/template.c: template_compare_id(): fixed constness. + 2013-06-03 * src/prefs_template.c diff --git a/src/template.c b/src/template.c index 15b30efa..e121bd3b 100644 --- a/src/template.c +++ b/src/template.c @@ -111,7 +111,7 @@ void template_clear_config(GSList *tmpl_list) static gint template_compare_id(gconstpointer a, gconstpointer b) { - Template *ta, *tb; + const Template *ta, *tb; ta = a; tb = b; |