diff options
Diffstat (limited to 'gas/config/tc-v850.c')
-rw-r--r-- | gas/config/tc-v850.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index d792769..69d4502 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -2709,7 +2709,7 @@ md_assemble (char *str) } if (warningmsg != NULL) - as_warn (warningmsg); + as_warn ("%s", warningmsg); break; } @@ -3111,7 +3111,7 @@ md_apply_fix (fixS *fixP, valueT *valueP, segT seg ATTRIBUTE_UNUSED) insn = v850_insert_operand (insn, operand, (offsetT) value, &errmsg); if (errmsg) - as_warn_where (fixP->fx_file, fixP->fx_line, errmsg); + as_warn_where (fixP->fx_file, fixP->fx_line, "%s", errmsg); if (fixP->fx_size > 2) bfd_putl32 ((bfd_vma) insn, (unsigned char *) where); |