|
From: Dirk M. <mu...@kd...> - 2003-12-07 23:36:44
|
CVS commit by mueller: in C, casting of lvalues is illegal. M +1 -1 vg_syscalls.c 1.63 --- valgrind/coregrind/vg_syscalls.c #1.62:1.63 @@ -816,5 +816,5 @@ static Bool fd_allowed(Int fd, const Cha #define SYSNO (tst->m_eax) /* in PRE(x) */ -#define res ((Int)tst->m_eax) /* in POST(x) */ +#define res (tst->m_eax) /* in POST(x) */ #define arg1 (tst->m_ebx) #define arg2 (tst->m_ecx) |