Commit 6cd01dc6 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

mapstep type was also changed to ptrdiff_t (ticket #157)

parent 1fce36a1
...@@ -57,7 +57,8 @@ CV_IMPL void cvCanny( const void* srcarr, void* dstarr, ...@@ -57,7 +57,8 @@ CV_IMPL void cvCanny( const void* srcarr, void* dstarr,
int low, high; int low, high;
int* mag_buf[3]; int* mag_buf[3];
uchar* map; uchar* map;
int mapstep, maxsize; ptrdiff_t mapstep;
int maxsize;
int i, j; int i, j;
CvMat mag_row; CvMat mag_row;
......
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