summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/spellcheck.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-09-21 10:42:33 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-09-21 10:42:33 +0000
commit0d4a38635fc26ed09d56b46e462b373489c8a4e2 (patch)
tree511b4e86460db8180565d0949cd370608a22fa4b /src/ui/dialog/spellcheck.cpp
parentFixed CMake build. (diff)
downloadinkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.tar.gz
inkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.zip
Fix format security errors
Fixed bugs: - https://launchpad.net/bugs/1193025 (bzr r12563)
Diffstat (limited to 'src/ui/dialog/spellcheck.cpp')
-rw-r--r--src/ui/dialog/spellcheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/spellcheck.cpp b/src/ui/dialog/spellcheck.cpp
index 9cc18c02c..45106755c 100644
--- a/src/ui/dialog/spellcheck.cpp
+++ b/src/ui/dialog/spellcheck.cpp
@@ -459,7 +459,7 @@ SpellCheck::finished ()
if (_stops)
label = g_strdup_printf(_("<b>Finished</b>, <b>%d</b> words added to dictionary"), _adds);
else
- label = g_strdup_printf(_("<b>Finished</b>, nothing suspicious found"));
+ label = g_strdup_printf("%s", _("<b>Finished</b>, nothing suspicious found"));
banner_label.set_markup(label);
g_free(label);
}