summaryrefslogtreecommitdiffstats
path: root/src/xml/repr-css.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2011-09-15 23:47:40 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2011-09-15 23:47:40 +0000
commitf21461e44a12ad13d86c125b095a8793e24dffda (patch)
tree0e2d65b29ff2e13f5fc28d6de9c76e4e45fbee51 /src/xml/repr-css.cpp
parentUse CSSOStringStream in writing number strings parsed by libcroco as (diff)
downloadinkscape-f21461e44a12ad13d86c125b095a8793e24dffda.tar.gz
inkscape-f21461e44a12ad13d86c125b095a8793e24dffda.zip
Fix incorrect argument in call to varargs function in xml/repr-css.cpp
(bzr r10630)
Diffstat (limited to 'src/xml/repr-css.cpp')
-rw-r--r--src/xml/repr-css.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml/repr-css.cpp b/src/xml/repr-css.cpp
index cb30e65ce..8e8042dfd 100644
--- a/src/xml/repr-css.cpp
+++ b/src/xml/repr-css.cpp
@@ -232,7 +232,7 @@ sp_repr_css_write_string(SPCSSAttr *css)
}
} else {
buffer.append(iter->value); // unquoted
- g_warning("sp_repr_css_write_string: %s %s", g_quark_to_string(iter->key), iter->value );
+ g_warning("sp_repr_css_write_string: %s %s", g_quark_to_string(iter->key), iter->value.pointer() );
}
if (rest(iter)) {