summaryrefslogtreecommitdiff
path: root/libreofficekit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-03 16:06:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-03 16:06:26 +0100
commit1347b90c9e5f54fd0b7e7147519f34d3c1b282d5 (patch)
treeb1e52c8d304e12080a7d704c5e845da3cc25aa3b /libreofficekit
parent0fe622f66ee04f25b05c2069f573010e6f517915 (diff)
-Werror,-Wformat-security
Change-Id: I34976a4900a73505a91d3e58736675ab39ad174c
Diffstat (limited to 'libreofficekit')
-rw-r--r--libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index fb054776f59d..2ba6866f3db3 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -264,7 +264,7 @@ gboolean TiledRowColumnBar::docConfigureEvent(GtkWidget* pDocView, GdkEventConfi
aCommand << "&height=" << int(lok_doc_view_pixel_to_twip(LOK_DOC_VIEW(pDocView), rWindow.m_pRowBar->m_nSizePixel));
std::stringstream ss;
ss << "lok::Document::getCommandValues(" << aCommand.str() << ")";
- g_info(ss.str().c_str());
+ g_info("%s", ss.str().c_str());
char* pValues = pDocument->pClass->getCommandValues(pDocument, aCommand.str().c_str());
std::stringstream aStream(pValues);
free(pValues);