From 3c14d382864201ec93a150071b3d5b9a75d54409 Mon Sep 17 00:00:00 2001 From: GullCode Date: Wed, 27 Jan 2021 15:54:45 +0100 Subject: [PATCH] Added missing initialisation --- firmware/baseband/proc_audiotx.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/baseband/proc_audiotx.hpp b/firmware/baseband/proc_audiotx.hpp index 3f1bace70..2eecc5888 100644 --- a/firmware/baseband/proc_audiotx.hpp +++ b/firmware/baseband/proc_audiotx.hpp @@ -50,7 +50,7 @@ private: int32_t sample { 0 }, delta { }; int8_t re { 0 }, im { 0 }; - size_t progress_interval_samples, progress_samples = 0; + size_t progress_interval_samples = 0 , progress_samples = 0; bool configured { false }; uint32_t bytes_read { 0 };