summaryrefslogtreecommitdiff
path: root/firmware/common/memcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/common/memcpy.c')
-rw-r--r--firmware/common/memcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/common/memcpy.c b/firmware/common/memcpy.c
index 5336f25a91..e3806805b6 100644
--- a/firmware/common/memcpy.c
+++ b/firmware/common/memcpy.c
@@ -72,7 +72,7 @@ _DEFUN (memcpy, (dst0, src0, len0),
72 _CONST char *src = src0; 72 _CONST char *src = src0;
73 long *aligned_dst; 73 long *aligned_dst;
74 _CONST long *aligned_src; 74 _CONST long *aligned_src;
75 int len = len0; 75 unsigned int len = len0;
76 76
77 /* If the size is small, or either SRC or DST is unaligned, 77 /* If the size is small, or either SRC or DST is unaligned,
78 then punt into the byte copy loop. This should be rare. */ 78 then punt into the byte copy loop. This should be rare. */