From c87a109570ed7419dc4ddf83c057a17bc17df675 Mon Sep 17 00:00:00 2001 From: Benjamin Reese Date: Mon, 4 Nov 2024 11:00:52 -0800 Subject: [PATCH] Fix typo --- src/rogue/interfaces/stream/Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rogue/interfaces/stream/Frame.cpp b/src/rogue/interfaces/stream/Frame.cpp index 4444c5a8b..3891c1a4a 100644 --- a/src/rogue/interfaces/stream/Frame.cpp +++ b/src/rogue/interfaces/stream/Frame.cpp @@ -457,7 +457,7 @@ boost::python::object ris::Frame::getNumpy(uint32_t offset, uint32_t count, bp:: int numpy_type; PyObject* dtype_pyobj = dtype.ptr(); // Get the raw PyObject from the Boost.Python object if (PyArray_DescrCheck(dtype_pyobj)) { - numpy_type = (reinterpret_case(dtype_pyobj))->type_num; + numpy_type = (reinterpret_cast(dtype_pyobj))->type_num; } else { throw(rogue::GeneralError::create("Frame::getNumpy", "Invalid dtype argument. Must be a NumPy dtype object.")); }