]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolved: merge two bools into a bitfield
authorLennart Poettering <lennart@poettering.net>
Fri, 18 Dec 2015 13:22:46 +0000 (14:22 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 18 Dec 2015 13:48:49 +0000 (14:48 +0100)
src/resolve/resolved-dns-transaction.h

index ee5b78064404cd2c396ed5ed9e84eb07a04008ca..5f6a69945425e60253b09973571ccde774d511da 100644 (file)
@@ -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;