summaryrefslogtreecommitdiffstats
path: root/src/dialogs
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-09-24 18:33:07 +0000
committerishmal <ishmal@users.sourceforge.net>2007-09-24 18:33:07 +0000
commitfd165a29ada4a73fb47cd61a59517df8ec12a2c8 (patch)
tree03385b1be6df7a935c618f802f18936404817186 /src/dialogs
parentFixed unsafe hardcoding of buffer size (diff)
downloadinkscape-fd165a29ada4a73fb47cd61a59517df8ec12a2c8.tar.gz
inkscape-fd165a29ada4a73fb47cd61a59517df8ec12a2c8.zip
fix minor typo
(bzr r3792)
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/swatches.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/swatches.cpp b/src/dialogs/swatches.cpp
index fb302c110..8f2702b63 100644
--- a/src/dialogs/swatches.cpp
+++ b/src/dialogs/swatches.cpp
@@ -347,7 +347,7 @@ static bool bruteForce( SPDocument* document, Inkscape::XML::Node* node, Glib::u
SPObject *obj = document->getObjectByRepr( node );
gchar c[64] = {0};
- sp_svg_write_color( c, sizoef(c), SP_RGBA32_U_COMPOSE( r, g, b, 0xff ) );
+ sp_svg_write_color( c, sizeof(c), SP_RGBA32_U_COMPOSE( r, g, b, 0xff ) );
SPCSSAttr *css = sp_repr_css_attr_new();
sp_repr_css_set_property( css, "stroke", c );