mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-05-19 15:25:30 -04:00
Fix overflow warnings from static analysis (#1183)
This commit is contained in:
@@ -63,10 +63,10 @@ void bitbuffer_print(const bitbuffer_t *bits);
|
||||
void bitbuffer_debug(const bitbuffer_t *bits);
|
||||
|
||||
/// Print the content of a bit row (byte buffer).
|
||||
void bitrow_print(bitrow_t const bitrow, unsigned bit_len);
|
||||
void bitrow_print(uint8_t const *bitrow, unsigned bit_len);
|
||||
|
||||
/// Debug the content of a bit row (byte buffer).
|
||||
void bitrow_debug(bitrow_t const bitrow, unsigned bit_len);
|
||||
void bitrow_debug(uint8_t const *bitrow, unsigned bit_len);
|
||||
|
||||
/// Parse a string into a bitbuffer.
|
||||
void bitbuffer_parse(bitbuffer_t *bits, const char *code);
|
||||
|
||||
Reference in New Issue
Block a user