diff options
Diffstat (limited to 'sysdeps/generic/memcopy.h')
-rw-r--r-- | sysdeps/generic/memcopy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/memcopy.h b/sysdeps/generic/memcopy.h index 9f17476b8e..7b179d5c3d 100644 --- a/sysdeps/generic/memcopy.h +++ b/sysdeps/generic/memcopy.h @@ -164,8 +164,8 @@ extern void _wordcopy_bwd_dest_aligned (long int, long int, size_t) # define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) \ do \ { \ - if ((nbytes) >= PAGE_COPY_THRESHOLD && \ - PAGE_OFFSET ((dstp) - (srcp)) == 0) \ + if ((nbytes) >= PAGE_COPY_THRESHOLD \ + && PAGE_OFFSET ((dstp) - (srcp)) == 0) \ { \ /* The amount to copy is past the threshold for copying \ pages virtually with kernel VM operations, and the \ |