aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/email-custom-header
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/email-custom-header')
-rw-r--r--plugins/email-custom-header/email-custom-header.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c
index c683eb922c..07d0f280ae 100644
--- a/plugins/email-custom-header/email-custom-header.c
+++ b/plugins/email-custom-header/email-custom-header.c
@@ -252,13 +252,13 @@ epech_load_from_settings (GSettings *settings,
memset (&temp_header_value_details, 0, sizeof (CustomSubHeader));
temp_header_details.sub_header_type_value = g_array_new (TRUE, TRUE, sizeof (CustomSubHeader));
parse_header_list = g_strsplit_set (headers[pos], "=;,", -1);
- temp_header_details.header_type_value = g_string_new("");
+ temp_header_details.header_type_value = g_string_new ("");
if (temp_header_details.header_type_value) {
g_string_assign (temp_header_details.header_type_value, parse_header_list[0]);
}
for (index = 0; parse_header_list[index + 1] ; ++index) {
- temp_header_value_details.sub_header_string_value = g_string_new("");
+ temp_header_value_details.sub_header_string_value = g_string_new ("");
if (temp_header_value_details.sub_header_string_value) {
g_string_assign (temp_header_value_details.sub_header_string_value, parse_header_list[index + 1]);