diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-09-21 10:42:33 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-09-21 10:42:33 +0000 |
| commit | 0d4a38635fc26ed09d56b46e462b373489c8a4e2 (patch) | |
| tree | 511b4e86460db8180565d0949cd370608a22fa4b /src/libnrtype | |
| parent | Fixed CMake build. (diff) | |
| download | inkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.tar.gz inkscape-0d4a38635fc26ed09d56b46e462b373489c8a4e2.zip | |
Fix format security errors
Fixed bugs:
- https://launchpad.net/bugs/1193025
(bzr r12563)
Diffstat (limited to 'src/libnrtype')
| -rw-r--r-- | src/libnrtype/FontFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnrtype/FontFactory.cpp b/src/libnrtype/FontFactory.cpp index 74c706a1b..c91e57065 100644 --- a/src/libnrtype/FontFactory.cpp +++ b/src/libnrtype/FontFactory.cpp @@ -962,7 +962,7 @@ font_instance *font_factory::Face(PangoFontDescription *descr, bool canFail) nFace = pango_font_map_load_font(fontServer,fontContext,descr); } else { - g_warning(_("Ignoring font without family that will crash Pango")); + g_warning("%s", _("Ignoring font without family that will crash Pango")); } if ( nFace ) { |
