aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2014-09-11 22:14:58 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2014-10-06 11:57:44 +0000
commit48a681c741993e61f2a9404b75b73d011b9e184e (patch)
tree71a1293db3f328f194c4d8137e28933883ad176d /src
parent3160c66408af858c3064e54fb14f074e54ac6701 (diff)
downloadriscv-openocd-48a681c741993e61f2a9404b75b73d011b9e184e.zip
riscv-openocd-48a681c741993e61f2a9404b75b73d011b9e184e.tar.gz
riscv-openocd-48a681c741993e61f2a9404b75b73d011b9e184e.tar.bz2
helper: constify log_strings
Change-Id: I5bdd8958e79b754d56bb7aee2892856e557eed76 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/2296 Tested-by: jenkins
Diffstat (limited to 'src')
-rw-r--r--src/helper/binarybuffer.c2
-rw-r--r--src/helper/log.c2
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 */