Make an inline static so we can build with coverage enabled.

This commit is contained in:
Nick Mathewson 2018-06-22 14:11:37 -04:00
parent 405fa42e8a
commit 1b93b065fc

View File

@ -31,10 +31,10 @@ extern const uint8_t TOR_TOLOWER_TABLE[];
#define TOR_TOLOWER(c) (TOR_TOLOWER_TABLE[(uint8_t)c])
#define TOR_TOUPPER(c) (TOR_TOUPPER_TABLE[(uint8_t)c])
inline int hex_decode_digit(char c);
static inline int hex_decode_digit(char c);
/** Helper: given a hex digit, return its value, or -1 if it isn't hex. */
inline int
static inline int
hex_decode_digit(char c)
{
switch (c) {