gril: Use unsigned int instead of gsize

Sizeof gsize changes depending on 32/64 bit system.  However, in reality
it is always 4 bytes.
This commit is contained in:
Denis Kenzior 2015-12-13 20:50:36 -06:00
parent 0e3f108edc
commit b8aae77e97
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ typedef struct _GRil GRil;
*/
struct ril_msg {
gchar *buf;
gsize buf_len;
unsigned int buf_len;
gboolean unsolicited;
int req;
int serial_no;