aboutsummaryrefslogtreecommitdiffstats
path: root/filter/e-filter-int.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-09 01:24:42 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:42:11 +0800
commit54da4fc09cf226fdb59b9f0c70555e2e57dc1f91 (patch)
treec62c9ac6d08670dffc400ff00117508512ce4f8b /filter/e-filter-int.c
parentfe20f70779fb486169a0735499d24e001ffa0cab (diff)
downloadgsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.gz
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.bz2
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.lz
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.xz
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.zst
gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.zip
Coding style cleanups.
Diffstat (limited to 'filter/e-filter-int.c')
-rw-r--r--filter/e-filter-int.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/e-filter-int.c b/filter/e-filter-int.c
index d82b36efda..dcb9b18fba 100644
--- a/filter/e-filter-int.c
+++ b/filter/e-filter-int.c
@@ -101,7 +101,7 @@ filter_int_xml_encode (EFilterElement *element)
xmlSetProp (value, (xmlChar *) "type", (xmlChar *) type);
sprintf (intval, "%d", filter_int->val);
- xmlSetProp (value, (xmlChar *)type, (xmlChar *)intval);
+ xmlSetProp (value, (xmlChar *) type, (xmlChar *) intval);
return value;
}
@@ -123,7 +123,7 @@ filter_int_xml_decode (EFilterElement *element,
filter_int->type = g_strdup (type);
xmlFree (type);
- intval = (gchar *)xmlGetProp (
+ intval = (gchar *) xmlGetProp (
node, (xmlChar *) (filter_int->type ?
filter_int->type : "integer"));
if (intval) {