mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Silence a build warning. (chan_phone.c:810: warning: value computed is not used)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@160171 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -807,7 +807,7 @@ static int phone_write(struct ast_channel *ast, struct ast_frame *frame)
|
|||||||
we have to pad it to 24 bytes still. */
|
we have to pad it to 24 bytes still. */
|
||||||
if (frame->datalen == 4) {
|
if (frame->datalen == 4) {
|
||||||
if (p->silencesupression) {
|
if (p->silencesupression) {
|
||||||
memset(tmpbuf + 4, 0, sizeof(tmpbuf) - 4);
|
(void) memset(tmpbuf + 4, 0, sizeof(tmpbuf) - 4);
|
||||||
memcpy(tmpbuf, frame->data.ptr, 4);
|
memcpy(tmpbuf, frame->data.ptr, 4);
|
||||||
expected = 24;
|
expected = 24;
|
||||||
res = phone_write_buf(p, tmpbuf, expected, maxfr, 0);
|
res = phone_write_buf(p, tmpbuf, expected, maxfr, 0);
|
||||||
|
Reference in New Issue
Block a user