diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-07-17 13:51:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-07-17 13:51:45 -0400 |
commit | bec4e41f4b48c288613a13021da9a29d5fb1ecac (patch) | |
tree | 179f51128526917187b5603d6bdd74cf712a9553 /changes | |
parent | c1bfa65211257e5efb89c5ebc534339d52fa77c4 (diff) | |
download | tor-bec4e41f4b48c288613a13021da9a29d5fb1ecac.tar.gz tor-bec4e41f4b48c288613a13021da9a29d5fb1ecac.zip |
Fix warnings in test_util_formats.
Storing 255 into a char gives a warning when char is signed.
Fixes bug 19682; bugfix on 0.2.8.1-alpha, where these tests were added.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug19682 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug19682 b/changes/bug19682 new file mode 100644 index 0000000000..c799c417ac --- /dev/null +++ b/changes/bug19682 @@ -0,0 +1,3 @@ + o Minor bugfixes (compilation): + - Fix compilation warning in the unit tests on systems where + char is signed. Fixes bug 19682; bugfix on 0.2.8.1-alpha. |