From 5ae14c47b0f134e902f0634583f4d84beb290984 Mon Sep 17 00:00:00 2001 From: baobrien Date: Thu, 7 Jul 2016 01:04:13 +0000 Subject: [PATCH] Fixed warning from unused variable git-svn-id: https://svn.code.sf.net/p/freetel/code@2841 01035d8c-6547-0410-b346-abe4f91aad63 --- codec2-dev/src/fsk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codec2-dev/src/fsk.c b/codec2-dev/src/fsk.c index cfd02b54..1e9f363b 100644 --- a/codec2-dev/src/fsk.c +++ b/codec2-dev/src/fsk.c @@ -395,8 +395,7 @@ void fsk_setup_modem_stats(struct FSK *fsk,struct MODEM_STATS *stats){ * Set the minimum and maximum frequencies at which the freq. estimator can find tones */ void fsk_set_est_limits(struct FSK *fsk,int est_min, int est_max){ - int Fs = fsk->Fs; - + fsk->est_min = est_min; if(fsk->est_min<0) fsk->est_min = 0; -- 2.25.1