(unexec): Cast arg to fprintf.
This commit is contained in:
parent
79e51eeb5a
commit
0c08e6df25
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ unexec (new_name, a_name, data_start, bss_start, entry_address)
|
|||
if (nhdr.fhdr.f_opthdr != sizeof (nhdr.aout))
|
||||
{
|
||||
fprintf (stderr, "unexec: input a.out header is %d bytes, not %d.\n",
|
||||
nhdr.fhdr.f_opthdr, sizeof (nhdr.aout));
|
||||
nhdr.fhdr.f_opthdr, (int)sizeof (nhdr.aout));
|
||||
exit (1);
|
||||
}
|
||||
if (nhdr.aout.magic != ZMAGIC)
|
||||
|
|
Loading…
Add table
Reference in a new issue