From 710e76d0ab97a6acadeee422f1a154e0754e8d61 Mon Sep 17 00:00:00 2001 From: lwvmobile <59371473+lwvmobile@users.noreply.github.com> Date: Thu, 19 May 2022 17:38:39 -0400 Subject: [PATCH] Stupid Compiler Fix Stupid Compiler Fix --- src/dmr_bs.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/dmr_bs.c b/src/dmr_bs.c index 1eea018..36404ed 100644 --- a/src/dmr_bs.c +++ b/src/dmr_bs.c @@ -648,5 +648,10 @@ void dmrBSBootstrap (dsd_opts * opts, dsd_state * state) processMbeFrame (opts, state, NULL, ambe_fr3, NULL); dmrBS (opts, state); //bootstrap into full TDMA frame for BS mode END: + //placing this below to fix compiler error, it will never run but compiler needs something there + if (0 == 1) + { + fprintf (stderr, "this is a dumb thing to have to fix"); + } }