diff options
-rw-r--r-- | src/helper/binarybuffer.c | 2 | ||||
-rw-r--r-- | src/helper/log.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/binarybuffer.c b/src/helper/binarybuffer.c index a3c993d..3cadabd 100644 --- a/src/helper/binarybuffer.c +++ b/src/helper/binarybuffer.c @@ -231,7 +231,7 @@ char *buf_to_str(const void *_buf, unsigned buf_len, unsigned radix) } } - const char *DIGITS = "0123456789ABCDEF"; + const char * const DIGITS = "0123456789ABCDEF"; for (unsigned j = 0; j < str_len; j++) str[j] = DIGITS[(int)str[j]]; diff --git a/src/helper/log.c b/src/helper/log.c index cb1fbac..c15b95d 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -52,7 +52,7 @@ static long long current_time; static long long start; -static char *log_strings[5] = { +static const char * const log_strings[5] = { "User : ", "Error: ", "Warn : ", /* want a space after each colon, all same width, colons aligned */ |