From: Nicholas Nethercote Date: Thu, 24 Mar 2005 04:41:16 +0000 (+0000) Subject: Bah, get the compiler-warning avoidance right this time. X-Git-Tag: svn/VALGRIND_3_0_0~896 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1826c24b7fcbfd52b1bfcbfa8906d9060d0314cf;p=thirdparty%2Fvalgrind.git Bah, get the compiler-warning avoidance right this time. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3422 --- diff --git a/memcheck/tests/vgtest_ume.c b/memcheck/tests/vgtest_ume.c index 23a96e6b51..b35a650e8c 100644 --- a/memcheck/tests/vgtest_ume.c +++ b/memcheck/tests/vgtest_ume.c @@ -65,7 +65,7 @@ static void test__find_auxv(void) break; default: - fprintf(stderr, "auxv->a_type = %lld\n", (Word)auxv->a_type); + fprintf(stderr, "auxv->a_type = %lld\n", (Long)auxv->a_type); assert(0); } }