1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00

[exttm] missed an initialization

This commit is contained in:
Timothy Stack 2022-04-04 09:58:16 -07:00
parent c8799b1c99
commit 5eaf1c4332

View File

@ -93,9 +93,9 @@ enum exttm_flags_t {
struct exttm {
struct tm et_tm;
int32_t et_nsec;
unsigned int et_flags;
long et_gmtoff;
int32_t et_nsec{0};
unsigned int et_flags{0};
long et_gmtoff{0};
bool operator==(const exttm& other) const
{