From 0d09711ea4a83dc7f81cab5d771b4ea7db77d8f7 Mon Sep 17 00:00:00 2001 From: rms Date: Thu, 7 Oct 1993 15:27:56 +0000 Subject: (read_specs): Fix call to bzero. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5656 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/gcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcc.c') diff --git a/gcc/gcc.c b/gcc/gcc.c index 99e8d2c0052..ee954aa1301 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -950,7 +950,7 @@ read_specs (filename) sizeof compilers[n_compilers].spec); compilers[n_compilers].spec[0] = spec; n_compilers++; - bzero (compilers[n_compilers], sizeof compilers[n_compilers]); + bzero (&compilers[n_compilers], sizeof compilers[n_compilers]); } if (*suffix == 0) -- cgit v1.2.1