]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Avoid compile warning.
authorNicholas Nethercote <njn@valgrind.org>
Thu, 24 Mar 2005 04:39:33 +0000 (04:39 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Thu, 24 Mar 2005 04:39:33 +0000 (04:39 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3420

memcheck/tests/vgtest_ume.c

index 6300c1f39a92aff8bb8722f46924e03c3b4389ee..23a96e6b5179fde30a589e106c4ef4edc322faef 100644 (file)
@@ -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);
       }
    }