From: Lennart Poettering Date: Fri, 18 Dec 2015 13:22:46 +0000 (+0100) Subject: resolved: merge two bools into a bitfield X-Git-Tag: v229~201^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0c888c78c419cd49c05ee6d226568e6fea0a4f3;p=thirdparty%2Fsystemd.git resolved: merge two bools into a bitfield --- diff --git a/src/resolve/resolved-dns-transaction.h b/src/resolve/resolved-dns-transaction.h index ee5b7806440..5f6a6994542 100644 --- a/src/resolve/resolved-dns-transaction.h +++ b/src/resolve/resolved-dns-transaction.h @@ -69,8 +69,8 @@ struct DnsTransaction { uint16_t id; - bool initial_jitter_scheduled; - bool initial_jitter_elapsed; + bool initial_jitter_scheduled:1; + bool initial_jitter_elapsed:1; DnsPacket *sent, *received;