aboutsummaryrefslogtreecommitdiffstats
path: root/src/cnetz/dsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cnetz/dsp.c')
-rw-r--r--src/cnetz/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cnetz/dsp.c b/src/cnetz/dsp.c
index e2be69c..7bf6159 100644
--- a/src/cnetz/dsp.c
+++ b/src/cnetz/dsp.c
@@ -837,7 +837,7 @@ void unshrink_speech(cnetz_t *cnetz, int16_t *speech_buffer, int count)
for (i = 0; i < count; i++) {
spl[pos++] = speech_buffer[i];
if (pos == 160) {
- call_tx_audio(cnetz->sender.callref, spl, 160);
+ call_tx_audio(cnetz->callref, spl, 160);
pos = 0;
}
}