100l, bzero is deprecated, use memset instead

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25216 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-11-30 21:29:45 +00:00
parent 2438f463c3
commit def649b0e4
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
af_msg(AF_MSG_FATAL, "[scaletempo] Out of memory\n");
return AF_ERROR;
}
bzero(s->buf_overlap, s->bytes_overlap);
memset(s->buf_overlap, 0, s->bytes_overlap);
if (use_int) {
int32_t* pb = s->table_blend;
int64_t blend = 0;