summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 );