]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
try to quiet static analyzer
authorAlan T. DeKok <aland@freeradius.org>
Sat, 23 Mar 2019 21:38:13 +0000 (17:38 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 23 Mar 2019 21:38:13 +0000 (17:38 -0400)
src/lib/util/trie.c

index 3fe121d928c2d3649c12801420523ac368ece134..eb685f720e8036035ebffa3e701399c5a58f9ee0 100644 (file)
@@ -333,6 +333,7 @@ static void hex_dump(FILE *fp, char const *msg, uint8_t const *key, int start_bi
 }
 #endif
 
+static uint16_t get_chunk(uint8_t const *key, int start_bit, int num_bits) CC_HINT(nonnull);
 
 /** Return a chunk of a key (in the low bits) for use in 2^N node de-indexing
  *
@@ -401,6 +402,8 @@ static uint16_t get_chunk(uint8_t const *key, int start_bit, int num_bits)
 }
 
 
+static void write_chunk(uint8_t *out, int start_bit, int num_bits, uint16_t chunk) CC_HINT(nonnull);
+
 /** Write a chunk to an output buffer
  *
  */