Fixed "printf format not a literal error" in build.
parent
21edb13ff8
commit
a328c18286
|
@ -750,7 +750,7 @@ int Assimp_Dump (const char* const* params, unsigned int num)
|
||||||
scene, shortened, compressed);
|
scene, shortened, compressed);
|
||||||
}
|
}
|
||||||
catch (const std::exception& e) {
|
catch (const std::exception& e) {
|
||||||
printf(("assimp dump: " + std::string(e.what())).c_str());
|
printf("%s", ("assimp dump: " + std::string(e.what())).c_str());
|
||||||
return AssimpCmdError::ExceptionWasRaised;
|
return AssimpCmdError::ExceptionWasRaised;
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (...) {
|
||||||
|
|
Loading…
Reference in New Issue