diff --git a/gobex/gobex.c b/gobex/gobex.c
index 93be21f..2a64849 100644
--- a/gobex/gobex.c
+++ b/gobex/gobex.c
static gint req_handler_cmpop(gconstpointer a, gconstpointer b)
{
const struct req_handler *handler = a;
- guint8 opcode = GPOINTER_TO_UINT(b);
+ guint opcode = GPOINTER_TO_UINT(b);
return (gint) handler->opcode - (gint) opcode;
}
static void handle_request(GObex *obex, GObexPacket *req)
{
GSList *match;
- guint8 op;
+ guint op;
if (g_obex_packet_get_operation(req, NULL) == G_OBEX_OP_CONNECT)
parse_connect_data(obex, req);