deflate.c(218,1): warning C4244: 'initializing': conversion from 'unsigned int' to 'Pos', possible loss of data
deflate.c(241,1): warning C4244: 'initializing': conversion from 'unsigned int' to 'Pos', possible loss of data
Pos *q = p - n;
for (i = 0; i < n; i++) {
Pos m = *q;
- Pos t = wsize;
+ Pos t = (Pos)wsize;
*q++ = (Pos)(m >= t ? m-t: 0);
}
}
Pos *q = p - n;
for (i = 0; i < n; i++) {
Pos m = *q;
- Pos t = wsize;
+ Pos t = (Pos)wsize;
*q++ = (Pos)(m >= t ? m-t: 0);
}
}