summaryrefslogtreecommitdiff
path: root/gcc/config/clipper/clix.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/clipper/clix.h')
-rw-r--r--gcc/config/clipper/clix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/clipper/clix.h b/gcc/config/clipper/clix.h
index 43aeadb7e21..a3e04ac5d77 100644
--- a/gcc/config/clipper/clix.h
+++ b/gcc/config/clipper/clix.h
@@ -35,9 +35,9 @@ Boston, MA 02111-1307, USA. */
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
do { \
- unsigned char *s; \
+ const unsigned char *s; \
int i; \
- for (i = 0, s = (unsigned char *)(PTR); i < (LEN); s++, i++) \
+ for (i = 0, s = (const unsigned char *)(PTR); i < (LEN); s++, i++) \
{ \
if ((i % 8) == 0) \
fputs ("\n\t.byte\t", (FILE)); \