Index: opcodes/sh-dis.c |
diff --git a/opcodes/sh-dis.c b/opcodes/sh-dis.c |
index e531558dd8ec401c14252b5f51cc40d06adfcb79..fa55f8af0f3170250fc326b55b81d0f9f868340a 100644 |
--- a/opcodes/sh-dis.c |
+++ b/opcodes/sh-dis.c |
@@ -356,10 +356,10 @@ print_insn_ppi (int field_b, struct disassemble_info *info) |
print_dsp_reg (field_b & 0xf, fprintf_fn, stream); |
break; |
case DSP_REG_X: |
- fprintf_fn (stream, sx_tab[(field_b >> 6) & 3]); |
+ fprintf_fn (stream, "%s", sx_tab[(field_b >> 6) & 3]); |
break; |
case DSP_REG_Y: |
- fprintf_fn (stream, sy_tab[(field_b >> 4) & 3]); |
+ fprintf_fn (stream, "%s", sy_tab[(field_b >> 4) & 3]); |
break; |
case A_MACH: |
fprintf_fn (stream, "mach"); |