Skip to content

Commit

Permalink
initialize noleadingzeros in init_variables() (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcsahok authored Oct 7, 2022
1 parent 0cce063 commit c7c3be0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ bool serial_section_mult = false;
bool serial_or_section = false; /* exchange is serial OR section, like HA-DX */
bool serial_grid4_mult = false;
bool qso_once = false;
bool noleadingzeros = false;
bool ctcomp = false;
bool noleadingzeros;
bool ctcomp;
bool nob4 = false; // allow auto b4
bool ignoredupe = false;
int dupe = 0;
Expand Down Expand Up @@ -627,6 +627,7 @@ static void init_variables() {
unique_call_multi = MULT_NONE;
generic_mult = MULT_NONE;

noleadingzeros = false;
ctcomp = false;
resend_call = RESEND_NOT_SET;

Expand Down

0 comments on commit c7c3be0

Please sign in to comment.