From fdb7bbb9feab04c09c792ba91460d2dccc40edac Mon Sep 17 00:00:00 2001 From: David McAnally Date: Sat, 20 Mar 2021 09:23:16 -0500 Subject: [PATCH] Changed int bLogCmd to extern int bLogCmd Corrected int bLogCmd to be extern in src/conference.h, as it is shared now. Changes linkbox/nodes.cpp, src/conference.c and src/conference.h. --- linkbox/nodes.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/linkbox/nodes.cpp b/linkbox/nodes.cpp index dcf2963..47beeb1 100755 --- a/linkbox/nodes.cpp +++ b/linkbox/nodes.cpp @@ -18,6 +18,9 @@ The latest version of this program may be found at http://CQiNet.sourceforge.net + Revision 1.29 2021/03/20 16:29:15 wd5m + 1. Corrected int bLogCmd to be extern in src/conference.h, as it is shared now. + Revision 1.29 2021/03/04 16:29:15 wd5m 1. Added call to GetTxAudio in ~Node() function to clear hanging audio buffers when node disconnects. This frees audio buffers @@ -349,8 +352,6 @@ struct avl_table *NodeTree; // sorted by node name int bTTS_Running = FALSE; int MixBuffer[AUDIO_BUF_SIZE]; -int bLogCmd; - // scratch buffers for audio transmission int16 AudioBuf[AUDIO_BUF_SIZE]; int16 MasterBuf[AUDIO_BUF_SIZE];