Tools: Tune: Fix erroneous fprintf() in src_get.m

This fprintf() with missing %d causes in Matlab and octave
messed up console output. This fix prints filter order
if this issue happens. This could be caused by too high
filter specification request that was not possible to reach.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2022-11-14 13:57:10 +02:00 committed by Liam Girdwood
parent 00c51bde78
commit c11d99241d
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ while (stopband_ok) == 0 && (n < n_max)
else
stopband_ok = 1; % Exit after reverse
fprintf('Warning: Filter stop band could not be ');
fprintf('reached.\n', cnv.coef_bits);
fprintf('reached. FIR order is left to %d\n', nfir);
end
end
end