diff options
Diffstat (limited to 'lisp/mathimp.c')
-rw-r--r-- | lisp/mathimp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mathimp.c b/lisp/mathimp.c index 5f8bd4d..0433968 100644 --- a/lisp/mathimp.c +++ b/lisp/mathimp.c @@ -436,7 +436,7 @@ static INLINE int cmp_br_br(mpr*, mpr*); */ static n_real zero, one, two; -static char *fatal_error_strings[] = { +static const char *fatal_error_strings[] = { #define DIVIDE_BY_ZERO 0 "divide by zero", #define FLOATING_POINT_OVERFLOW 1 @@ -445,7 +445,7 @@ static char *fatal_error_strings[] = { "floating point exception" }; -static char *fatal_object_error_strings[] = { +static const char *fatal_object_error_strings[] = { #define NOT_A_NUMBER 0 "is not a number", #define NOT_A_REAL_NUMBER 1 |