From: Philippe Waroquiers Date: Fri, 21 Aug 2015 22:34:53 +0000 (+0000) Subject: Fix warning signed unsigned comparison in m_oset.c : X-Git-Tag: svn/VALGRIND_3_11_0~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e523958b4811e18d86c0f4848a06157c52513c;p=thirdparty%2Fvalgrind.git Fix warning signed unsigned comparison in m_oset.c : ../../coregrind/m_oset.c:413:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15582 --- diff --git a/coregrind/m_oset.c b/coregrind/m_oset.c index 68446f8e9e..3fd214f0f6 100644 --- a/coregrind/m_oset.c +++ b/coregrind/m_oset.c @@ -383,7 +383,7 @@ void VG_(OSetGen_Destroy)(AvlTree* t) if (!has_node_pa || VG_(releasePA)(t->node_pa) > 0) { AvlNode* n = NULL; Int i = 0; - Word sz = 0; + UWord sz = 0; stackClear(t); if (t->root)