(read_specs): Fix call to bzero.
authorRichard Stallman <rms@gnu.org>
Thu, 7 Oct 1993 15:27:56 +0000 (15:27 +0000)
committerRichard Stallman <rms@gnu.org>
Thu, 7 Oct 1993 15:27:56 +0000 (15:27 +0000)
From-SVN: r5656

gcc/gcc.c

index 99e8d2c0052b1802406a0443a2f5e38263fdd822..ee954aa1301e02a0f8801fb84911507676464c74 100644 (file)
--- 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)