* cosmetic

This commit is contained in:
Dirk-Jan C. Binnema 2011-01-06 17:32:42 +02:00
parent c712267c0f
commit 92108c0b66
2 changed files with 2 additions and 1 deletions

View File

@ -236,7 +236,7 @@ print_attr_xml (const char* elm, const char *str)
if (!str || strlen(str) == 0)
return; /* empty: don't include */
esc = g_markup_escape_text (str, -1);
esc = g_markup_escape_text (str, -1);
g_print ("\t\t<%s>%s</%s>\n", elm, esc, elm);
g_free (esc);
}

View File

@ -411,3 +411,4 @@ mu_str_escape_c_literal (const gchar* str)
return g_string_free (tmp, FALSE);
}