diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:09:00 +0800 |
commit | 777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1 (patch) | |
tree | dfab9ca8f30c7b1539f86dfe19b8bf761d6a899c /e-util/e-xml-utils.c | |
parent | 83675abbc2b3a3bc6421094a56651d021fc0cdcd (diff) | |
download | gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.gz gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.zst gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-xml-utils.c')
-rw-r--r-- | e-util/e-xml-utils.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/e-util/e-xml-utils.c b/e-util/e-xml-utils.c index 653b44eb5d..0247f91e27 100644 --- a/e-util/e-xml-utils.c +++ b/e-util/e-xml-utils.c @@ -151,7 +151,7 @@ e_xml_get_child_by_name_by_lang_list (const xmlNode *parent, language_names = g_get_language_names (); while (*language_names != NULL) lang_list = g_list_append ( - (GList *) lang_list, (gchar *)*language_names++); + (GList *) lang_list, (gchar *) * language_names++); } return e_xml_get_child_by_name_by_lang_list_with_score (parent,name, @@ -374,7 +374,8 @@ e_xml_set_double_prop_by_name (xmlNode *parent, } gchar * -e_xml_get_string_prop_by_name (const xmlNode *parent, const xmlChar *prop_name) +e_xml_get_string_prop_by_name (const xmlNode *parent, + const xmlChar *prop_name) { g_return_val_if_fail (parent != NULL, NULL); g_return_val_if_fail (prop_name != NULL, NULL); |