[tor-commits] [tor/master] Make an inline static so we can build with coverage enabled.

nickm at torproject.org nickm at torproject.org
Tue Jun 26 15:27:41 UTC 2018


commit 1b93b065fc3eb52fe5674d6df05c71c505ed1ef3
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Jun 22 14:11:37 2018 -0400

    Make an inline static so we can build with coverage enabled.
---
 src/lib/string/compat_ctype.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/string/compat_ctype.h b/src/lib/string/compat_ctype.h
index 3fde6eaf8..530a10270 100644
--- a/src/lib/string/compat_ctype.h
+++ b/src/lib/string/compat_ctype.h
@@ -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) {





More information about the tor-commits mailing list