]> git.eshelyaron.com Git - emacs.git/commitdiff
(unexec): Cast arg to fprintf.
authorRichard M. Stallman <rms@gnu.org>
Wed, 13 Aug 1997 15:28:47 +0000 (15:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 13 Aug 1997 15:28:47 +0000 (15:28 +0000)
src/unexalpha.c

index 1205d39dd4a76ab36f498b2d11bf37c621a11100..450c81539fbec976710782d17fc86076d9301ca6 100644 (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)