summaryrefslogtreecommitdiff
path: root/channels/xpmr/xpmr.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/xpmr/xpmr.c')
-rwxr-xr-xchannels/xpmr/xpmr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/xpmr/xpmr.c b/channels/xpmr/xpmr.c
index b94b0faf9..0fc1fbe99 100755
--- a/channels/xpmr/xpmr.c
+++ b/channels/xpmr/xpmr.c
@@ -1555,7 +1555,7 @@ i16 ctcss_detect(t_pmr_chan *pChan)
}
#endif
indexWas=indexNow;
- ptdet->zIndex=(++ptdet->zIndex)%4;
+ ptdet->zIndex=(ptdet->zIndex + 1) % 4;
}
ptdet->counter-=(points2do*CTCSS_SCOUNT_MUL);
@@ -2019,7 +2019,7 @@ t_pmr_chan *createPmrChannel(t_pmr_chan *tChan, i16 numSamples)
pSps->sigProc=pmr_rx_frontend;
pSps->enabled=1;
pSps->decimator=pSps->decimate=6;
- pSps->interpolate=pSps->interpolate=1;
+ pSps->interpolate=1;
pSps->nSamples=pChan->nSamplesRx;
pSps->ncoef=taps_fir_bpf_noise_1;
pSps->size_coef=2;