diff --git a/gcc/config/pru/pru-pragma.cc b/gcc/config/pru/pru-pragma.cc index 9c182d78814..c3f3d33d547 100644 --- a/gcc/config/pru/pru-pragma.cc +++ b/gcc/config/pru/pru-pragma.cc @@ -58,11 +58,9 @@ pru_pragma_ctable_entry (cpp_reader *) if (type != CPP_EOF) error ("junk at end of %<#pragma CTABLE_ENTRY%>"); else if (i >= ARRAY_SIZE (pru_ctable)) - error ("% index %" HOST_WIDE_INT_PRINT "d" - " is not valid", i); + error ("% index %wd is not valid", i); else if (pru_ctable[i].valid && pru_ctable[i].base != base) - error ("redefinition of %", i); + error ("redefinition of %", i); else { if (base & 0xff)