summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-13 15:28:47 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-13 15:28:47 +0000
commit2a34ec53961e0bd7623573d3ad8c8a8393e99c5a (patch)
tree26a30858b7a4ae50a9bc47ffe6bd2c0980b2a03a /src
parent82a8a8feb33df6433478e5fb603461a1bf94b0a0 (diff)
downloademacs-2a34ec53961e0bd7623573d3ad8c8a8393e99c5a.tar.gz
(unexec): Cast arg to fprintf.
Diffstat (limited to 'src')
-rw-r--r--src/unexalpha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexalpha.c b/src/unexalpha.c
index 1205d39dd4a..450c81539fb 100644
--- a/src/unexalpha.c
+++ b/src/unexalpha.c
@@ -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)