diff options
Diffstat (limited to 'gr-vocoder/lib')
-rw-r--r-- | gr-vocoder/lib/cvsd_decode_bs_impl.cc | 4 | ||||
-rw-r--r-- | gr-vocoder/lib/cvsd_encode_sb_impl.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gr-vocoder/lib/cvsd_decode_bs_impl.cc b/gr-vocoder/lib/cvsd_decode_bs_impl.cc index 103ebfcc5d..85126f0f1b 100644 --- a/gr-vocoder/lib/cvsd_decode_bs_impl.cc +++ b/gr-vocoder/lib/cvsd_decode_bs_impl.cc @@ -71,10 +71,10 @@ cvsd_decode_bs_impl::cvsd_decode_bs_impl(short min_step, d_stepsize(min_step) { if (d_K > 32) - throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32\n"); + throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32"); if (d_J > d_K) - throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K\n"); + throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K"); } cvsd_decode_bs_impl::~cvsd_decode_bs_impl() diff --git a/gr-vocoder/lib/cvsd_encode_sb_impl.cc b/gr-vocoder/lib/cvsd_encode_sb_impl.cc index 26766fbf02..262ec0f5d3 100644 --- a/gr-vocoder/lib/cvsd_encode_sb_impl.cc +++ b/gr-vocoder/lib/cvsd_encode_sb_impl.cc @@ -70,10 +70,10 @@ cvsd_encode_sb_impl::cvsd_encode_sb_impl(short min_step, d_stepsize(min_step) { if (d_K > 32) - throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32\n"); + throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32"); if (d_J > d_K) - throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K\n"); + throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K"); } cvsd_encode_sb_impl::~cvsd_encode_sb_impl() |