Merge pull request #592 from GullCode/ui-aprs-rx-warning-fix

Fix for warning XXX should be initialized
This commit is contained in:
Erwin Ried 2022-04-21 09:15:53 +02:00 committed by GitHub
commit d617618dcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
{