diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2024-02-01 19:45:04 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2024-02-01 19:45:04 +0100 |
commit | 4c0e9f14183dcbcb4e558aeb3b50472344127ba1 (patch) | |
tree | 72610c7a32ac1c1c1fc2c112ddadfba50bcf34ea /changes | |
parent | fbca1df9dd7691ada4837ce4deda87315c87e6a2 (diff) | |
download | tor-4c0e9f14183dcbcb4e558aeb3b50472344127ba1.tar.gz tor-4c0e9f14183dcbcb4e558aeb3b50472344127ba1.zip |
Make two 1-bit fields unsigned
This should be a completely harmless warning as we only check whether
the fields are true or false.
Closes #40911.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug40911 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug40911 b/changes/bug40911 new file mode 100644 index 0000000000..c938b56225 --- /dev/null +++ b/changes/bug40911 @@ -0,0 +1,5 @@ + o Minor bugfixes (compiler warnings): + - Make sure the two bitfields in the half-closed edge struct are + unsigned, as we're using them for boolean values and assign 1 to + them. Fixes bug 40911; bugfix on 0.4.7.2-alpha. + |