X Tutup
Skip to content

Commit ebfdf45

Browse files
committed
resolved: drop pointless bitfield on a lone bool
1 parent 421b1f0 commit ebfdf45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/resolve/resolved-dns-scope.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ struct DnsScope {
4343
OrderedHashmap *conflict_queue;
4444
sd_event_source *conflict_event_source;
4545

46-
bool announced:1;
4746
sd_event_source *announce_event_source;
4847

4948
RateLimit ratelimit;
@@ -63,6 +62,8 @@ struct DnsScope {
6362
LIST_HEAD(DnsTransaction, transactions);
6463

6564
LIST_FIELDS(DnsScope, scopes);
65+
66+
bool announced;
6667
};
6768

6869
int dns_scope_new(Manager *m, DnsScope **ret, Link *l, DnsProtocol p, int family);

0 commit comments

Comments
 (0)
X Tutup