summaryrefslogtreecommitdiff
path: root/fxotune.c
diff options
context:
space:
mode:
authormattf <mattf@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-11 03:01:35 +0000
committermattf <mattf@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-01-11 03:01:35 +0000
commit4423c39ff8cdd2699a5238955ae47a807f8c78d4 (patch)
tree57a4333bafcf175b493a148fd7e4730cd4f0cf6c /fxotune.c
parent7e735b7c23588ca56887503db85d4ca211d6faf8 (diff)
More changes
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@539 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'fxotune.c')
-rwxr-xr-xfxotune.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fxotune.c b/fxotune.c
index a2cfbe5..8dde81e 100755
--- a/fxotune.c
+++ b/fxotune.c
@@ -43,7 +43,7 @@ static char *usage =
static short *outbuf = NULL;
static short obufsize = TESTDURATION * 8 * 2;
-int process_readbuf(short *ibuf, int isize, short *obuf, int osize)
+int process_readbuf(short *ibuf, int isize)
{
int i = 0;
short *samples = ibuf;
@@ -267,7 +267,7 @@ int main (int argc , char **argv)
/* Do output to file */
int len = 0;
static char output[255] = "";
- snprintf(output, sizeof(output), "%d=%d,%d,%d,%d,%d,%d,%d,%d,%d", i,
+ snprintf(output, sizeof(output), "%d=%d,%d,%d,%d,%d,%d,%d,%d,%d\n", i,
echo_trys[i].acim, echo_trys[i].coef1, echo_trys[i].coef2,
echo_trys[i].coef3, echo_trys[i].coef4, echo_trys[i].coef5,
echo_trys[i].coef6, echo_trys[i].coef7, echo_trys[i].coef8 );