We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32b628d + 716a738 commit 90b3124Copy full SHA for 90b3124
crypto/math/datatypes.c
@@ -79,7 +79,7 @@ int octet_get_weight(uint8_t octet)
79
80
/* the value MAX_PRINT_STRING_LEN is defined in datatypes.h */
81
82
-char bit_string[MAX_PRINT_STRING_LEN];
+static char bit_string[MAX_PRINT_STRING_LEN];
83
84
uint8_t srtp_nibble_to_hex_char(uint8_t nibble)
85
{
test/util.c
@@ -49,7 +49,7 @@
49
#include <stdint.h>
50
51
/* include space for null terminator */
52
-char bit_string[MAX_PRINT_STRING_LEN + 1];
+static char bit_string[MAX_PRINT_STRING_LEN + 1];
53
54
static inline int hex_char_to_nibble(uint8_t c)
55
0 commit comments