diff options
author | Hib Eris <hib@hiberis.nl> | 2008-12-24 17:48:46 +0100 |
---|---|---|
committer | Albert Astals Cid <aacid@kde.org> | 2008-12-24 17:48:46 +0100 |
commit | 08cef528f2e51cc62cff4125f179021ad9555317 (patch) | |
tree | 47cb7e386d5556ac90437279c66c7fc3d918a12f /test | |
parent | 0606b4bba8e889204c7b7c9d376f63b659f83a4f (diff) |
Fix compile warning on string literal format
Diffstat (limited to 'test')
-rw-r--r-- | test/pdf-inspector.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pdf-inspector.cc b/test/pdf-inspector.cc index 4a8c2c1f..aba4a71b 100644 --- a/test/pdf-inspector.cc +++ b/test/pdf-inspector.cc @@ -306,7 +306,7 @@ PdfInspector::load(const char *file_name) void PdfInspector::error_dialog (const char *error_message) { - g_warning (error_message); + g_warning ("%s", error_message); } void |