aboutsummaryrefslogtreecommitdiffstats
path: root/filter/e-filter-int.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-01-03 12:46:23 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-01-04 02:15:01 +0800
commite77ee5d5d38ad95bce550db62bf4105f43cf88c6 (patch)
tree3b4c275b086d3f49360c551e686f62140a8ee4d4 /filter/e-filter-int.c
parent3cfd5d640908b6441769341c764de70006262c6e (diff)
downloadgsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.gz
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.bz2
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.lz
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.xz
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.zst
gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'filter/e-filter-int.c')
-rw-r--r--filter/e-filter-int.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/filter/e-filter-int.c b/filter/e-filter-int.c
index f3fef9dc89..d9d7b1f357 100644
--- a/filter/e-filter-int.c
+++ b/filter/e-filter-int.c
@@ -119,7 +119,9 @@ filter_int_xml_decode (EFilterElement *element,
filter_int->type = g_strdup (type);
xmlFree (type);
- intval = (gchar *)xmlGetProp (node, (xmlChar *)(filter_int->type ? filter_int->type : "integer"));
+ intval = (gchar *)xmlGetProp (
+ node, (xmlChar *) (filter_int->type ?
+ filter_int->type : "integer"));
if (intval) {
filter_int->val = atoi (intval);
xmlFree (intval);