aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index b49311b4..12989832 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -149,7 +149,8 @@ char *tp; /* target buffer for digested string */
if (*cp == '\\' && strchr("0123456789xX", cp[1]))
{
- char *dp, *hex = "00112233445566778899aAbBcCdDeEfF";
+ char *dp;
+ const char *hex = "00112233445566778899aAbBcCdDeEfF";
int dcount = 0;
if (*++cp == 'x' || *cp == 'X')