summaryrefslogtreecommitdiff
path: root/libsigrokdecode.h
diff options
context:
space:
mode:
authorSoeren Apel <soeren@apelpie.net>2020-06-26 20:18:35 +0200
committerSoeren Apel <soeren@apelpie.net>2021-02-13 23:21:10 +0100
commit2ee740fd9e5197bc9951a0c92e35947203c1b620 (patch)
tree808954427f0fa2e16b80a5a777cea481774e33ff /libsigrokdecode.h
parent114adb4997b71e93267e3816710c8b019ae927c0 (diff)
downloadlibsigrokdecode-2ee740fd9e5197bc9951a0c92e35947203c1b620.tar.gz
libsigrokdecode-2ee740fd9e5197bc9951a0c92e35947203c1b620.zip
Use uint8_t instead of unsigned char for raw byte data
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r--libsigrokdecode.h4
1 files changed, 2 insertions, 2 deletions
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,