From 16788eea21235df1fb4a800c275f4147d25007e3 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 4 Jul 2012 10:43:23 +0200 Subject: [PATCH] Fix build error --- src/App/PropertyPythonObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/PropertyPythonObject.cpp b/src/App/PropertyPythonObject.cpp index d9af45dcd..aa5534e61 100644 --- a/src/App/PropertyPythonObject.cpp +++ b/src/App/PropertyPythonObject.cpp @@ -335,7 +335,7 @@ void PropertyPythonObject::Restore(Base::XMLReader &reader) else if (load_pickle) this->loadPickle(buffer); else - Base::Console().Warning("PropertyPythonObject::Restore: unsupported serialisation: %s\n", buffer); + Base::Console().Warning("PropertyPythonObject::Restore: unsupported serialisation: %s\n", buffer.c_str()); restoreObject(reader); hasSetValue(); }