mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Fix missing-initializer warning
This commit is contained in:
parent
f152081de1
commit
fabfa28c48
@ -1225,7 +1225,9 @@ typedef struct {
|
||||
time_t check_for_correct_dns;
|
||||
} time_to_t;
|
||||
|
||||
static time_to_t time_to = { 0 };
|
||||
static time_to_t time_to = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
||||
};
|
||||
|
||||
/** Reset all the time_to's so we'll do all our actions again as if we
|
||||
* just started up.
|
||||
|
Loading…
Reference in New Issue
Block a user