Removal of numerous trailing spaces, to tidy up spandsp in line with the master

version.
This commit is contained in:
Steve Underwood
2013-03-14 05:04:43 +08:00
parent 4e812bb263
commit 93bb5ca5c7
130 changed files with 494 additions and 498 deletions

View File

@@ -37,7 +37,7 @@
static void vec_copyf_dumb(float z[], const float x[], int n)
{
int i;
for (i = 0; i < n; i++)
z[i] = x[i];
}
@@ -97,7 +97,7 @@ static int test_vec_copyf(void)
static void vec_negatef_dumb(float z[], const float x[], int n)
{
int i;
for (i = 0; i < n; i++)
z[i] = -x[i];
}
@@ -157,7 +157,7 @@ static int test_vec_negatef(void)
static void vec_zerof_dumb(float z[], int n)
{
int i;
for (i = 0; i < n; i++)
z[i] = 0.0f;
}
@@ -215,7 +215,7 @@ static int test_vec_zerof(void)
static void vec_setf_dumb(float z[], float x, int n)
{
int i;
for (i = 0; i < n; i++)
z[i] = x;
}