summaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-10-07 15:27:56 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1993-10-07 15:27:56 +0000
commit0d09711ea4a83dc7f81cab5d771b4ea7db77d8f7 (patch)
tree08a76566ce8c820f6bab3ac01342ab6946c01246 /gcc/gcc.c
parentbeba8e3508385d60a080003dd3e4be43d7203dd1 (diff)
downloadgcc-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.c2
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)