aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-06-07 07:20:44 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-06-07 07:20:44 +0000
commit043d381e7e44c60a72db91d9a29f2898c5b23837 (patch)
tree0bc5062f8cb54721c1767255e4c6c11a6ab04e86 /src
parent1345b496dbb687ef5de04066ddbf4affee4b4cd1 (diff)
src/template.c: template_compare_id(): fixed constness.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3270 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r--src/template.c2
1 files changed, 1 insertions, 1 deletions
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;