From: Julian Seward Date: Wed, 2 Mar 2005 14:04:19 +0000 (+0000) Subject: Fix struct ume_auxv so that auxc walking on 64-bit platforms works. X-Git-Tag: svn/VALGRIND_3_0_0~1060 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fe41b4fd9646ba6619c7686ecf3fbf13324a311;p=thirdparty%2Fvalgrind.git Fix struct ume_auxv so that auxc walking on 64-bit platforms works. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3258 --- diff --git a/coregrind/ume.h b/coregrind/ume.h index 6e7c1caca7..48bbf95de9 100644 --- a/coregrind/ume.h +++ b/coregrind/ume.h @@ -89,11 +89,10 @@ int do_exec(const char *exe, struct exeinfo *info); struct ume_auxv { - int a_type; + Word a_type; union { void *a_ptr; - int a_val; - void (*a_fcn)(void); + Word a_val; } u; };