Commit cbc580f0 by Richard Stallman

(read_specs): Fix call to bzero.

From-SVN: r5656
parent 55ff92b8
...@@ -950,7 +950,7 @@ read_specs (filename) ...@@ -950,7 +950,7 @@ read_specs (filename)
sizeof compilers[n_compilers].spec); sizeof compilers[n_compilers].spec);
compilers[n_compilers].spec[0] = spec; compilers[n_compilers].spec[0] = spec;
n_compilers++; n_compilers++;
bzero (compilers[n_compilers], sizeof compilers[n_compilers]); bzero (&compilers[n_compilers], sizeof compilers[n_compilers]);
} }
if (*suffix == 0) if (*suffix == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment