ab106607bd
- OIIO 2.4.11.0 - OpenEXR 3.1.7 with additional fix for threadpool shutdown - FreeType 2.13.0 - Fmt 9.1.0 - Python 3.10.11 - Flac 1.4.2 - FFMpeg 6.0 - OpenSSL 1.1.1t - SQLite 3.40.1 - USD 23.05 with MaterialX Support and Render module Co-authored-by: Brecht Van Lommel <brecht@blender.org> Co-authored-by: Campbell Barton <campbell@blender.org> Pull Request: https://projects.blender.org/blender/blender/pulls/107783
14 lines
678 B
Diff
14 lines
678 B
Diff
diff --git a/src/python/py_oiio.cpp b/src/python/py_oiio.cpp
|
|
index 6031d2c23..e71105da5 100644
|
|
--- a/src/python/py_oiio.cpp
|
|
+++ b/src/python/py_oiio.cpp
|
|
@@ -153,7 +153,7 @@ oiio_bufinfo::oiio_bufinfo(const py::buffer_info& pybuf, int nchans, int width,
|
|
format = TypeUnknown; // No idea what's going on -- error
|
|
error = Strutil::fmt::format(
|
|
"Python array shape is [{:,}] but expecting h={}, w={}, ch={}",
|
|
- cspan<ssize_t>(pybuf.shape), height, width, nchans);
|
|
+ cspan<py::ssize_t>(pybuf.shape), height, width, nchans);
|
|
}
|
|
} else if (pixeldims == 1) {
|
|
// Reading a 1D scanline span
|