Make imbuf's OIIO bindings to compile with latest OIIO from git

This commit is contained in:
Sergey Sharybin 2017-05-16 09:30:29 +02:00
parent d508b69e44
commit f6afd1b73c
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ struct ImBuf *imb_load_photoshop(const char *filename, int flags, char colorspac
in = ImageInput::create(filename);
if (!in) {
std::cerr << __func__ << ": ImageInput::create() failed:" << std::endl
<< OpenImageIO::geterror() << std::endl;
<< OIIO_NAMESPACE::geterror() << std::endl;
return NULL;
}