From 713e632e6c94a4aedaf6b8d56aff582aaff66df0 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 May 2022 21:04:21 -0400 Subject: [PATCH] fix some compiler warnings --- op25/gr-op25_repeater/lib/nxdn_tx_sb_impl.cc | 2 +- op25/gr-op25_repeater/lib/software_imbe_decoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/op25/gr-op25_repeater/lib/nxdn_tx_sb_impl.cc b/op25/gr-op25_repeater/lib/nxdn_tx_sb_impl.cc index d11ef2e..b9b11ca 100644 --- a/op25/gr-op25_repeater/lib/nxdn_tx_sb_impl.cc +++ b/op25/gr-op25_repeater/lib/nxdn_tx_sb_impl.cc @@ -265,7 +265,7 @@ nxdn_tx_sb_impl::config() FILE * fp1 = fopen(d_config_file, "r"); char line[256]; char * cp; - unsigned int li[9]; + unsigned int li[10]; long int ran; long int lich, lich2; if (!fp1) { diff --git a/op25/gr-op25_repeater/lib/software_imbe_decoder.h b/op25/gr-op25_repeater/lib/software_imbe_decoder.h index 7573bd4..cd22f9a 100644 --- a/op25/gr-op25_repeater/lib/software_imbe_decoder.h +++ b/op25/gr-op25_repeater/lib/software_imbe_decoder.h @@ -47,7 +47,7 @@ public: /** * Decode the compressed audio. * - * \cw in IMBE codeword (including parity check bits). + * cw in IMBE codeword (including parity check bits). */ virtual void decode(const voice_codeword& cw);