changeset 4319:43a327b94579

(make_hdr): Use & in call to bzero.
author Richard M. Stallman <rms@gnu.org>
date Wed, 28 Jul 1993 08:18:09 +0000
parents 15c60018d647
children 4055472194b5
files src/unexec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/unexec.c	Tue Jul 27 23:43:56 1993 +0000
+++ b/src/unexec.c	Wed Jul 28 08:18:09 1993 +0000
@@ -679,7 +679,7 @@
        */
       ERROR0 ("can't build a COFF file from scratch yet");
 #else
-      bzero (hdr, sizeof hdr);
+      bzero (&hdr, sizeof hdr);
 #endif
     }