changeset 19336:46e497d9add2

(unexec): Cast arg to fprintf.
author Richard M. Stallman <rms@gnu.org>
date Wed, 13 Aug 1997 15:28:47 +0000
parents e33cf4ba547c
children bd0dd246f9cd
files src/unexalpha.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/unexalpha.c	Wed Aug 13 15:27:49 1997 +0000
+++ b/src/unexalpha.c	Wed Aug 13 15:28:47 1997 +0000
@@ -186,7 +186,7 @@
   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)