summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-08-06 22:31:16 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-08-06 22:31:16 +0400
commit770f581623ed0c7d31b9751ee789a72272b07c6c (patch)
treeea7697165397d551b2a599bb43d261589fc4aa8b /sd
parent15b95b224588743d629c7a9a305352357eb96a07 (diff)
-Werror=format-security
Change-Id: Idb1267108a9eb8d08e1a14685a2f5c9a6263b46d
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/remotecontrol/ImagePreparer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/ImagePreparer.cxx b/sd/source/ui/remotecontrol/ImagePreparer.cxx
index 3555aeec8be2..06a8c6d7ea90 100644
--- a/sd/source/ui/remotecontrol/ImagePreparer.cxx
+++ b/sd/source/ui/remotecontrol/ImagePreparer.cxx
@@ -229,7 +229,7 @@ OString ImagePreparer::notesToHtml( sal_uInt32 aSlideNumber )
OUString aFileURL;
FileBase::createTempFile( 0, 0, &aFileURL );
- fprintf( stderr, OUStringToOString( aFileURL, RTL_TEXTENCODING_UTF8).getStr() );
+ fprintf( stderr, "%s", OUStringToOString( aFileURL, RTL_TEXTENCODING_UTF8).getStr() );
if ( !xController->isRunning() )
return "";
@@ -460,4 +460,4 @@ sal_Bool ExportTo( uno::Reference< drawing::XDrawPage>& aNotesPage, String aUrl
return sal_False;
}
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */