[trunk] Remove a simple warning about a cast
This commit is contained in:
parent
3fe9243e1c
commit
52440cc2e6
|
@ -441,7 +441,8 @@ OPJ_BOOL opj_t2_decode_packets( opj_t2_t *p_t2,
|
||||||
|
|
||||||
/* don't forget to release pi */
|
/* don't forget to release pi */
|
||||||
opj_pi_destroy(l_pi,l_nb_pocs);
|
opj_pi_destroy(l_pi,l_nb_pocs);
|
||||||
*p_data_read = l_current_data - p_src;
|
assert( l_current_data - p_src < UINT32_MAX );
|
||||||
|
*p_data_read = (OPJ_UINT32)(l_current_data - p_src);
|
||||||
return OPJ_TRUE;
|
return OPJ_TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue