瀏覽代碼

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

Nick Mathewson 6 年之前
父節點
當前提交
1b93b065fc
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/lib/string/compat_ctype.h

+ 2 - 2
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) {