Hi there seems to be a type conversion issue in disasm.c at several points. For example, there is the code:
if (autosync) add_sync(offs, 0L);
at line 1275, where add_sync is defined as:
void add_sync(uint32_t pos, uint32_t length)
and "offs" is defined as:
int64_t offs;
Obviously this is going to generate a warning. Any opinions about the right way to eliminate this warning?