From: Julian Seward Date: Thu, 17 Jan 2008 14:37:24 +0000 (+0000) Subject: Fix inconsistent order of fields. I think this is purely aesthetic X-Git-Tag: svn/VALGRIND_3_4_0~1099 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c149e998133dac4cf9244b5b20340afcd001008;p=thirdparty%2Fvalgrind.git Fix inconsistent order of fields. I think this is purely aesthetic since nothing depends on the actual layout of this struct, but anyway. Noticed by Vinay Nallamothu. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7352 --- diff --git a/coregrind/m_syswrap/priv_types_n_macros.h b/coregrind/m_syswrap/priv_types_n_macros.h index e5ce28e8ed..208d5ba0ce 100644 --- a/coregrind/m_syswrap/priv_types_n_macros.h +++ b/coregrind/m_syswrap/priv_types_n_macros.h @@ -87,8 +87,8 @@ typedef Int o_arg4; Int o_arg5; Int o_arg6; - Int o_arg8; Int o_arg7; + Int o_arg8; Int o_retval; } SyscallArgLayout;