(unexec): Cast arg to fprintf.

This commit is contained in:
Richard M. Stallman 1997-08-13 15:28:47 +00:00
parent 79e51eeb5a
commit 0c08e6df25

View file

@ -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)