]> sigrok.org Git - libsigrokdecode.git/commitdiff
Use uint8_t instead of unsigned char for raw byte data
authorSoeren Apel <redacted>
Fri, 26 Jun 2020 18:18:35 +0000 (20:18 +0200)
committerSoeren Apel <redacted>
Sat, 13 Feb 2021 22:21:10 +0000 (23:21 +0100)
libsigrokdecode.h

index 087027698b5223765e58c721ec59044174eeb53f..3ce6ae5ee37b798c53c583d7b30cec1a645a2b7a 100644 (file)
@@ -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,