comparison src/unexec.c @ 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 07ba80692381
children 1fc792473491
comparison
equal deleted inserted replaced
4318:15c60018d647 4319:43a327b94579
677 /* We probably could without too much trouble. The code is in gld 677 /* We probably could without too much trouble. The code is in gld
678 * but I don't have that much time or incentive. 678 * but I don't have that much time or incentive.
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
686 unexec_text_start = (long) start_of_text (); 686 unexec_text_start = (long) start_of_text ();
687 unexec_data_start = data_start; 687 unexec_data_start = data_start;