Stupid Compiler Fix

Stupid Compiler Fix
This commit is contained in:
lwvmobile 2022-05-19 17:38:39 -04:00 committed by GitHub
parent 994e728bfb
commit 710e76d0ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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");
}
}