* config/tc-spu.c (md_assemble): Cast printf string size parameter

to int in order to avoid a compiler warning.
This commit is contained in:
Nick Clifton 2006-10-29 18:18:34 +00:00
parent 4e98625713
commit e2785c4472
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-29 Nick Clifton <nickc@redhat.com>
* config/tc-spu.c (md_assemble): Cast printf string size parameter
to int in order to avoid a compiler warning.
2006-10-27 Andrew Stubbs <andrew.stubbs@st.com>
* config/tc-sh.c (md_assemble): Define size of branches.

View File

@ -333,7 +333,7 @@ md_assemble (char *op)
const char *d = syntax_error_param;
while (*d != '$')
d--;
as_warn (_("Treating '%-*s' as a symbol."), syntax_error_param - d, d);
as_warn (_("Treating '%-*s' as a symbol."), (int)(syntax_error_param - d), d);
}
/* grow the current frag and plop in the opcode */