mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-01-07 11:08:36 -05:00
Remove newline at end of log messages
Signed-off-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
This commit is contained in:
parent
9cc778123f
commit
8b076c3ed9
18 changed files with 60 additions and 60 deletions
|
|
@ -68,7 +68,7 @@ static void run_remap_test_float(
|
|||
for (i = 0; i < nsamples * n_oc; i++) {
|
||||
if (fabsf(out[i] - out_ref[i]) > 0.0001f) {
|
||||
pa_log_debug("Correctness test failed: align=%d", align);
|
||||
pa_log_debug("%d: %.24f != %.24f\n", i,
|
||||
pa_log_debug("%d: %.24f != %.24f", i,
|
||||
out[i], out_ref[i]);
|
||||
ck_abort();
|
||||
}
|
||||
|
|
@ -122,7 +122,7 @@ static void run_remap_test_s16(
|
|||
for (i = 0; i < nsamples * n_oc; i++) {
|
||||
if (abs(out[i] - out_ref[i]) > 3) {
|
||||
pa_log_debug("Correctness test failed: align=%d", align);
|
||||
pa_log_debug("%d: %d != %d\n", i, out[i], out_ref[i]);
|
||||
pa_log_debug("%d: %d != %d", i, out[i], out_ref[i]);
|
||||
ck_abort();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue