(_bb_init_prg): Cast arg to bzero to (char *).

From-SVN: r10889
This commit is contained in:
Richard Kenner 1995-12-27 17:54:27 -05:00
parent 5a3f1ec3ea
commit 9bb89050a9
1 changed files with 1 additions and 1 deletions

View File

@ -2082,7 +2082,7 @@ __bb_init_prg ()
bb_hashbuckets = (struct bb_edge **)
malloc (BB_BUCKETS * sizeof (struct bb_edge *));
if (bb_hashbuckets)
bzero (bb_hashbuckets, BB_BUCKETS);
bzero ((char *) bb_hashbuckets, BB_BUCKETS);
}
if (bb_mode & 12)