diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-10-07 15:27:56 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-10-07 15:27:56 +0000 |
commit | 0d09711ea4a83dc7f81cab5d771b4ea7db77d8f7 (patch) | |
tree | 08a76566ce8c820f6bab3ac01342ab6946c01246 /gcc/gcc.c | |
parent | beba8e3508385d60a080003dd3e4be43d7203dd1 (diff) | |
download | gcc-0d09711ea4a83dc7f81cab5d771b4ea7db77d8f7.tar.gz |
(read_specs): Fix call to bzero.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5656 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |