X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=libsigrokdecode.h;h=3ce6ae5ee37b798c53c583d7b30cec1a645a2b7a;hb=234cbf50152b7e007322c62ed6190ae6bff30a92;hp=087027698b5223765e58c721ec59044174eeb53f;hpb=b8c8dc8a649ad0a76bccbfae7198cc9c8cb2ccda;p=libsigrokdecode.git diff --git a/libsigrokdecode.h b/libsigrokdecode.h index 0870276..3ce6ae5 100644 --- a/libsigrokdecode.h +++ b/libsigrokdecode.h @@ -323,12 +323,12 @@ struct srd_proto_data_annotation { struct srd_proto_data_binary { int bin_class; /* Index into "struct srd_decoder"->binary. */ uint64_t size; - const unsigned char *data; + const uint8_t *data; }; struct srd_proto_data_logic { int logic_group; uint64_t repeat_count; /* Number of times the value in data was repeated. */ - const unsigned char *data; /* Bitfield containing the states of the logic outputs */ + const uint8_t *data; /* Bitfield containing the states of the logic outputs */ }; typedef void (*srd_pd_output_callback)(struct srd_proto_data *pdata,