diff options
| author | Richard M. Stallman | 1993-07-28 08:18:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-28 08:18:09 +0000 |
| commit | a5fd213fe1d4a846cbcf286aa2d67791034578c8 (patch) | |
| tree | 18b7b3b92e61dc20bdd9972fd76b73a06c3314b5 /src/unexec.c | |
| parent | 6e20ffab4d54d6d0058e86a6c5e0f342cd93c560 (diff) | |
| download | emacs-a5fd213fe1d4a846cbcf286aa2d67791034578c8.tar.gz emacs-a5fd213fe1d4a846cbcf286aa2d67791034578c8.zip | |
(make_hdr): Use & in call to bzero.
Diffstat (limited to 'src/unexec.c')
| -rw-r--r-- | src/unexec.c | 2 |
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 | ||