Skip to content

Commit

Permalink
Merge pull request #592 from GullCode/ui-aprs-rx-warning-fix
Browse files Browse the repository at this point in the history
Fix for warning XXX should be initialized
  • Loading branch information
eried committed Apr 21, 2022
2 parents cdba4fa + c37df0c commit d617618
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/application/apps/ui_aprs_rx.hpp
Expand Up @@ -57,12 +57,12 @@ struct APRSRecentEntry {
uint16_t hits { 0 };
uint32_t age { 0 };

uint64_t source;
uint64_t source { 0 };
std::string source_formatted { " " };
std::string time_string { "" };
std::string info_string { "" };

aprs::aprs_pos pos;
aprs::aprs_pos pos { 0 , 0 , 0 , 0 };
bool has_position = false;
APRSRecentEntry(uint64_t src)
{
Expand Down

0 comments on commit d617618

Please sign in to comment.