From 823fdc9cb47b0117f34366b1c7d583070803a93c Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 20 Oct 2021 20:58:12 -0400 Subject: command: Make command_add_frame() and command_encodef() static The only users of these two functions are in command.c so they can be declared local to that code. Signed-off-by: Kevin O'Connor --- src/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.c') diff --git a/src/command.c b/src/command.c index 015cdb8e..39c09458 100644 --- a/src/command.c +++ b/src/command.c @@ -108,7 +108,7 @@ error: } // Encode a message -uint_fast8_t +static uint_fast8_t command_encodef(uint8_t *buf, const struct command_encoder *ce, va_list args) { uint_fast8_t max_size = READP(ce->max_size); @@ -172,7 +172,7 @@ error: } // Add header and trailer bytes to a message block -void +static void command_add_frame(uint8_t *buf, uint_fast8_t msglen) { buf[MESSAGE_POS_LEN] = msglen; -- cgit v1.2.3-70-g09d2