diff options
Diffstat (limited to 'src/xml/repr-css.cpp')
| -rw-r--r-- | src/xml/repr-css.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/xml/repr-css.cpp b/src/xml/repr-css.cpp index 994d73a24..8540ff9f0 100644 --- a/src/xml/repr-css.cpp +++ b/src/xml/repr-css.cpp @@ -186,10 +186,9 @@ sp_repr_css_print(SPCSSAttr *css) for ( List<AttributeRecord const> iter = css->attributeList() ; iter ; ++iter ) { - g_print(g_quark_to_string(iter->key)); - g_print(":\t"); - g_print(iter->value); - g_print("\n"); + gchar const * key = g_quark_to_string(iter->key); + gchar const * val = iter->value; + g_print("%s:\t%s\n",key,val); } } |
