From: Nicholas Nethercote Date: Thu, 24 Mar 2005 04:39:33 +0000 (+0000) Subject: Avoid compile warning. X-Git-Tag: svn/VALGRIND_3_0_0~898 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f724359acf768bfc2b0445aae4bdad9f1a1cd0d;p=thirdparty%2Fvalgrind.git Avoid compile warning. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3420 --- diff --git a/memcheck/tests/vgtest_ume.c b/memcheck/tests/vgtest_ume.c index 6300c1f39a..23a96e6b51 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 = %d\n", auxv->a_type); + fprintf(stderr, "auxv->a_type = %lld\n", (Word)auxv->a_type); assert(0); } }