aboutsummaryrefslogtreecommitdiffstats
path: root/src/unexec.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-28 08:18:09 +0000
committerRichard M. Stallman1993-07-28 08:18:09 +0000
commita5fd213fe1d4a846cbcf286aa2d67791034578c8 (patch)
tree18b7b3b92e61dc20bdd9972fd76b73a06c3314b5 /src/unexec.c
parent6e20ffab4d54d6d0058e86a6c5e0f342cd93c560 (diff)
downloademacs-a5fd213fe1d4a846cbcf286aa2d67791034578c8.tar.gz
emacs-a5fd213fe1d4a846cbcf286aa2d67791034578c8.zip
(make_hdr): Use & in call to bzero.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexec.c b/src/unexec.c
index d14103f1dd5..74e459a302e 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -679,7 +679,7 @@ make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name)
679 */ 679 */
680 ERROR0 ("can't build a COFF file from scratch yet"); 680 ERROR0 ("can't build a COFF file from scratch yet");
681#else 681#else
682 bzero (hdr, sizeof hdr); 682 bzero (&hdr, sizeof hdr);
683#endif 683#endif
684 } 684 }
685 685