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