summaryrefslogtreecommitdiff
path: root/strings/ctype-ucs2.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/ctype-ucs2.c')
-rw-r--r--strings/ctype-ucs2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strings/ctype-ucs2.c b/strings/ctype-ucs2.c
index 071d50d8256..cba44afc926 100644
--- a/strings/ctype-ucs2.c
+++ b/strings/ctype-ucs2.c
@@ -1051,7 +1051,7 @@ static void
my_fill_mb2(CHARSET_INFO *cs, char *s, size_t slen, int fill)
{
char buf[10], *last;
- int buflen, remainder;
+ size_t buflen, remainder;
DBUG_ASSERT((slen % 2) == 0);
@@ -1066,7 +1066,7 @@ my_fill_mb2(CHARSET_INFO *cs, char *s, size_t slen, int fill)
for (last= s + slen - buflen; s <= last; s+= buflen)
{
/* Enough space for the characer */
- memcpy(s, buf, (size_t) buflen);
+ memcpy(s, buf, buflen);
}
/*