gisi: Make cursor a 16bit unsigned

This is to match subblock length when long header format is in use.
This commit is contained in:
Aki Niemi 2011-03-03 19:05:10 +02:00
parent 1a97158e04
commit 073f3d252f
1 changed files with 1 additions and 1 deletions

View File

@ -31,10 +31,10 @@ extern "C" {
#include "message.h"
struct _GIsiSubBlockIter {
uint8_t cursor;
uint8_t *start;
uint8_t *end;
gboolean longhdr;
uint16_t cursor;
uint16_t sub_blocks;
};
typedef struct _GIsiSubBlockIter GIsiSubBlockIter;