diff options
Diffstat (limited to 'newlib/libc/string/mempcpy.c')
-rw-r--r-- | newlib/libc/string/mempcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/mempcpy.c b/newlib/libc/string/mempcpy.c index 06e97de..5618921 100644 --- a/newlib/libc/string/mempcpy.c +++ b/newlib/libc/string/mempcpy.c @@ -53,7 +53,7 @@ mempcpy (void *dst0, /* If the size is small, or either SRC or DST is unaligned, then punt into the byte copy loop. This should be rare. */ - if (!TOO_SMALL_BIG_BLOCK(len0) && !UNALIGNED_X_Y(src, dst)) + if (!TOO_SMALL_LITTLE_BLOCK(len0) && !UNALIGNED_X_Y(src, dst)) { aligned_dst = (long*)dst; aligned_src = (long*)src; |