procqueue: use unsigned int for I/O frame size fields

A frame size cannot be negative, so 'unsigned' is more
suitable for frame size fields.
This commit is contained in:
Vadim Yanitskiy 2017-09-01 14:33:19 +07:00
parent 4f0a47d0e3
commit 3be9c7ae3c
1 changed files with 2 additions and 2 deletions

View File

@ -24,9 +24,9 @@
struct osmo_gapk_pq_item {
/*! input frame size (in bytes). '0' in case of variable frames */
int len_in;
unsigned int len_in;
/*! output frame size (in bytes). '0' in case of variable frames */
int len_out;
unsigned int len_out;
/*! opaque state */
void *state;
/*! call-back for actual format conversion function