Commit 9bb89050 by Richard Kenner

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

From-SVN: r10889
parent 5a3f1ec3
...@@ -2082,7 +2082,7 @@ __bb_init_prg () ...@@ -2082,7 +2082,7 @@ __bb_init_prg ()
bb_hashbuckets = (struct bb_edge **) bb_hashbuckets = (struct bb_edge **)
malloc (BB_BUCKETS * sizeof (struct bb_edge *)); malloc (BB_BUCKETS * sizeof (struct bb_edge *));
if (bb_hashbuckets) if (bb_hashbuckets)
bzero (bb_hashbuckets, BB_BUCKETS); bzero ((char *) bb_hashbuckets, BB_BUCKETS);
} }
if (bb_mode & 12) if (bb_mode & 12)
......
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