From 043d381e7e44c60a72db91d9a29f2898c5b23837 Mon Sep 17 00:00:00 2001 From: hiro Date: Fri, 7 Jun 2013 07:20:44 +0000 Subject: src/template.c: template_compare_id(): fixed constness. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3270 ee746299-78ed-0310-b773-934348b2243d --- src/template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/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; -- cgit v1.2.3