aboutsummaryrefslogtreecommitdiffstats
path: root/filter/e-filter-part.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-08-16 23:25:56 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-09-14 20:09:00 +0800
commit777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1 (patch)
treedfab9ca8f30c7b1539f86dfe19b8bf761d6a899c /filter/e-filter-part.c
parent83675abbc2b3a3bc6421094a56651d021fc0cdcd (diff)
downloadgsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.gz
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.bz2
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.lz
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.xz
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.zst
gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'filter/e-filter-part.c')
-rw-r--r--filter/e-filter-part.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/e-filter-part.c b/filter/e-filter-part.c
index 521c0781aa..0b31097d7c 100644
--- a/filter/e-filter-part.c
+++ b/filter/e-filter-part.c
@@ -280,7 +280,7 @@ e_filter_part_copy_values (EFilterPart *dst_part,
/* NOTE: we go backwards, it just works better that way */
/* for each source type, search the dest type for
- a matching type in the same order */
+ * a matching type in the same order */
src_link = g_list_last (src_part->elements);
dst_link = g_list_last (dst_part->elements);
@@ -491,7 +491,7 @@ e_filter_part_expand_code (EFilterPart *part,
namelen = (len + 1) * 2;
name = g_alloca (namelen);
}
- memcpy (name, newstart+2, len);
+ memcpy (name, newstart + 2, len);
name[len] = 0;
element = e_filter_part_find_element (part, name);