Skip to content
Snippets Groups Projects
Commit d4480e9c authored by Russell Bryant's avatar Russell Bryant
Browse files

remove unused variable

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10447 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent df05e39e
No related branches found
No related tags found
No related merge requests found
......@@ -467,7 +467,6 @@ static struct ast_frame *wav_read(struct ast_filestream *s, int *whennext)
static int wav_write(struct ast_filestream *fs, struct ast_frame *f)
{
int res = 0;
int x;
short tmp[8000], *tmpi;
float tmpf;
......@@ -508,7 +507,7 @@ static int wav_write(struct ast_filestream *fs, struct ast_frame *f)
}
if ((fwrite(tmp, 1, f->datalen, fs->f) != f->datalen) ) {
ast_log(LOG_WARNING, "Bad write (%d): %s\n", res, strerror(errno));
ast_log(LOG_WARNING, "Bad write (%d): %s\n", errno, strerror(errno));
return -1;
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment