Skip to content

Commit

Permalink
Don't persist alternate frequency string
Browse files Browse the repository at this point in the history
  • Loading branch information
argilo committed Nov 2, 2024
1 parent 23a83b0 commit 30e214a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/parser_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void parser_impl::decode_type0(unsigned int *group, bool B) {
flagstring[4] = artificial_head ? '1' : '0';
flagstring[5] = compressed ? '1' : '0';
flagstring[6] = dynamic_pty ? '1' : '0';
static std::string af_string;
std::string af_string;

if(!B) { // type 0A
af_code_1 = int(group[2] >> 8) & 0xff;
Expand Down

0 comments on commit 30e214a

Please sign in to comment.