--- blender/source/gameengine/VideoTexture/Exception.cpp.orig 2009-08-15 11:00:39.039228646 +0200 +++ blender/source/gameengine/VideoTexture/Exception.cpp.orig 2009-08-15 11:03:34.332226898 +0200 @@ -21,7 +21,7 @@ */ -#include +#include #include #include @@ -170,11 +170,11 @@ // length of result code const size_t rsltSize = 11; // delimit description - const char delimRslt[] = ": "; + //const char delimRslt[] = ": "; // set text of description char rsltTxt[rsltSize]; - std::ostrstream os(rsltTxt, rsltSize); - os << std::hex << m_hRslt << delimRslt << '\0'; + std::ostringstream os; + os << std::hex << m_hRslt << ": " << '\0'; // copy result to description m_desc.insert(0, rsltTxt); // copy exception description to last exception string