From: Richard M. Stallman Date: Wed, 13 Aug 1997 15:28:47 +0000 (+0000) Subject: (unexec): Cast arg to fprintf. X-Git-Tag: emacs-20.1~612 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c08e6df25ab1689eceeb87dd9a46e8c69be2a18;p=emacs.git (unexec): Cast arg to fprintf. --- 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)