diff options
Diffstat (limited to 'apps/plugins/lib/strncpy.c')
| -rw-r--r-- | apps/plugins/lib/strncpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lib/strncpy.c b/apps/plugins/lib/strncpy.c index 8a78b23..1b552ee 100644 --- a/apps/plugins/lib/strncpy.c +++ b/apps/plugins/lib/strncpy.c @@ -46,7 +46,7 @@ QUICKREF /*SUPPRESS 530*/ /* Nonzero if either X or Y is not aligned on a "long" boundary. */ -#define UNALIGNED(X, Y) \ +#define ROCKBOX_UNALIGNED(X, Y) \ (((long)X & (sizeof (long) - 1)) | ((long)Y & (sizeof (long) - 1))) #if LONG_MAX == 2147483647L @@ -95,7 +95,7 @@ _DEFUN (strncpy, (dst0, src0), _CONST long *aligned_src; /* If SRC and DEST is aligned and count large enough, then copy words. */ - if (!UNALIGNED (src, dst) && !TOO_SMALL (count)) + if (!ROCKBOX_UNALIGNED (src, dst) && !TOO_SMALL (count)) { aligned_dst = (long*)dst; aligned_src = (long*)src; |