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

This commit is contained in:
Vadim Pisarevsky 2010-11-15 20:59:09 +00:00
parent 1fce36a164
commit 6cd01dc6ca

View File

@ -57,7 +57,8 @@ CV_IMPL void cvCanny( const void* srcarr, void* dstarr,
int low, high;
int* mag_buf[3];
uchar* map;
int mapstep, maxsize;
ptrdiff_t mapstep;
int maxsize;
int i, j;
CvMat mag_row;