diff options
author | Taylor Holberton <taylor.holberton@protonmail.com> | 2020-09-03 22:49:53 -0500 |
---|---|---|
committer | Taylor Holberton <taylor.holberton@protonmail.com> | 2020-09-03 22:49:53 -0500 |
commit | 4b4a8bb3b2d7c64ee0ab5a5aaf5322feb9b06c78 (patch) | |
tree | 00c30bd9029d9fc5931b9c393b820fad9207a063 | |
parent | 563ee74ad551d08ea2b5e8dee2ac542c883b9f4b (diff) |
Using struct for TLV size
-rw-r--r-- | include/tinyalsa/mixer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tinyalsa/mixer.h b/include/tinyalsa/mixer.h index 7f0f022..2acdd54 100644 --- a/include/tinyalsa/mixer.h +++ b/include/tinyalsa/mixer.h @@ -44,7 +44,7 @@ extern "C" { #endif /* TLV header size*/ -#define TLV_HEADER_SIZE (2 * sizeof(unsigned int)) +#define TLV_HEADER_SIZE sizeof(struct snd_ctl_tlv) struct mixer; |