diff options
Diffstat (limited to 'gr-vocoder/lib/cvsd_encode_sb_impl.cc')
-rw-r--r-- | gr-vocoder/lib/cvsd_encode_sb_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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() |