summaryrefslogtreecommitdiff
path: root/changes/bug7260
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-11-02 14:32:05 -0400
committerNick Mathewson <nickm@torproject.org>2012-11-02 14:32:05 -0400
commit4458fd0cd8fa259f0ee8195e1aa86d5b7c6f8919 (patch)
treeb7b8886da56232e92a0438edd2a869f6964141a4 /changes/bug7260
parent1bfda600c338cd8f7d6b9acc7613b5567e6ee03f (diff)
downloadtor-4458fd0cd8fa259f0ee8195e1aa86d5b7c6f8919.tar.gz
tor-4458fd0cd8fa259f0ee8195e1aa86d5b7c6f8919.zip
In the unit tests, use "test_eq_ptr" and "test_neq_ptr" consistently
This is part of what's needed to build without warnings on mingw64: it was warning about the cast from void* to long that happened in the places we were using test_{n,}eq on pointers. The alternative here would have been to broaden tt_int_op to accept a long long or an intptr_t, but that's less correct (since pointers aren't integers), and would hurt the portability of tinytest a little. Fixes part of 7260.
Diffstat (limited to 'changes/bug7260')
-rw-r--r--changes/bug72601
1 files changed, 1 insertions, 0 deletions
diff --git a/changes/bug7260 b/changes/bug7260
index f174461400..8eb54c381a 100644
--- a/changes/bug7260
+++ b/changes/bug7260
@@ -1,2 +1,3 @@
o Minor bugfixes:
- Compile on win64 using mingw64. Fixes bug 7260; patches from "yayooo".
+