aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-05-23 17:04:38 -0400
committerNick Mathewson <nickm@torproject.org>2011-05-23 17:04:38 -0400
commita5232e0c4c572cdff85701f698b8b90c9443d7e4 (patch)
tree1bc0db8feaa3a808518b5c277481eefacb984277 /changes
parent57810c333a38c72c1e361c02e31de7712d1f221a (diff)
downloadtor-a5232e0c4c572cdff85701f698b8b90c9443d7e4.tar
tor-a5232e0c4c572cdff85701f698b8b90c9443d7e4.tar.gz
Fix GCC 4.6's new -Wunused-but-set-variable warnings.
Most instances were dead code; for those, I removed the assignments. Some were pieces of info we don't currently plan to use, but which we might in the future. For those, I added an explicit cast-to-void to indicate that we know that the thing's unused. Finally, one was a case where we were testing the wrong variable in a unit test. That one I fixed. This resolves bug 3208.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug32082
1 files changed, 2 insertions, 0 deletions
diff --git a/changes/bug3208 b/changes/bug3208
index 731c96e20..fd737ba69 100644
--- a/changes/bug3208
+++ b/changes/bug3208
@@ -2,3 +2,5 @@
- Remove undocumented option "-F" from tor-resolve: it hasn't done
anything since 0.2.1.16-rc.
+ o Minor bugfixes:
+ - Fix warnings from GCC 4.6's "-Wunused-but-set-variable" option.