aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-13 15:28:47 +0000
committerRichard M. Stallman1997-08-13 15:28:47 +0000
commit0c08e6df25ab1689eceeb87dd9a46e8c69be2a18 (patch)
tree8c902209a29276cfdd97098e16f541e2153557c1
parent79e51eeb5a13f126bcd5a4361949d3397c8e90ab (diff)
downloademacs-0c08e6df25ab1689eceeb87dd9a46e8c69be2a18.tar.gz
emacs-0c08e6df25ab1689eceeb87dd9a46e8c69be2a18.zip
(unexec): Cast arg to fprintf.
-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)
186 if (nhdr.fhdr.f_opthdr != sizeof (nhdr.aout)) 186 if (nhdr.fhdr.f_opthdr != sizeof (nhdr.aout))
187 { 187 {
188 fprintf (stderr, "unexec: input a.out header is %d bytes, not %d.\n", 188 fprintf (stderr, "unexec: input a.out header is %d bytes, not %d.\n",
189 nhdr.fhdr.f_opthdr, sizeof (nhdr.aout)); 189 nhdr.fhdr.f_opthdr, (int)sizeof (nhdr.aout));
190 exit (1); 190 exit (1);
191 } 191 }
192 if (nhdr.aout.magic != ZMAGIC) 192 if (nhdr.aout.magic != ZMAGIC)