Commit d674965b authored by boatx's avatar boatx

Fixing typo in variable name.

parent e0b327aa
...@@ -282,7 +282,7 @@ static bool pyopencv_to(PyObject* o, Mat& m, const ArgInfo info) ...@@ -282,7 +282,7 @@ static bool pyopencv_to(PyObject* o, Mat& m, const ArgInfo info)
if( type < 0 ) if( type < 0 )
{ {
if( typenum == NPY_INT64 || typenum == NPY_UINT64 || type == NPY_LONG ) if( typenum == NPY_INT64 || typenum == NPY_UINT64 || typenum == NPY_LONG )
{ {
needcopy = needcast = true; needcopy = needcast = true;
new_typenum = NPY_INT; new_typenum = NPY_INT;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment