Re: [PATCH v1 2/7] linux-user: protect fcntl64 with an #ifdef

2020-03-27 Thread Richard Henderson
On 3/27/20 2:49 AM, Alex Bennée wrote: > Checking TARGET_ABI_BITS is sketchy - we should check for the presence > of the define to be sure. Also clean up the white space while we are > there. > > Signed-off-by: Alex Bennée > --- > linux-user/syscall.c | 8 > 1 file changed, 4 insertions

Re: [PATCH v1 2/7] linux-user: protect fcntl64 with an #ifdef

2020-03-27 Thread Laurent Vivier
Le 27/03/2020 à 10:49, Alex Bennée a écrit : > Checking TARGET_ABI_BITS is sketchy - we should check for the presence > of the define to be sure. Also clean up the white space while we are > there. > > Signed-off-by: Alex Bennée > --- > linux-user/syscall.c | 8 > 1 file changed, 4 inse

[PATCH v1 2/7] linux-user: protect fcntl64 with an #ifdef

2020-03-27 Thread Alex Bennée
Checking TARGET_ABI_BITS is sketchy - we should check for the presence of the define to be sure. Also clean up the white space while we are there. Signed-off-by: Alex Bennée --- linux-user/syscall.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux-user/syscall.c