From cbc580f02bff05c3ff0df52e91a7b330f6d166cb Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 7 Oct 1993 15:27:56 +0000 Subject: [PATCH] (read_specs): Fix call to bzero. From-SVN: r5656 --- gcc/gcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2