aboutsummaryrefslogtreecommitdiff
path: root/lib/mbstring/rtou8.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mbstring/rtou8.c')
-rw-r--r--lib/mbstring/rtou8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mbstring/rtou8.c b/lib/mbstring/rtou8.c
index 0ddac89..c11e89c 100644
--- a/lib/mbstring/rtou8.c
+++ b/lib/mbstring/rtou8.c
@@ -4,7 +4,7 @@
#include "rune.h"
int
-rtou8(char8_t *s, rune ch, size_t n)
+rtou8(char8_t *s, size_t n, rune ch)
{
if (ch <= U8_1B_MAX) {
if (n >= 1)
@@ -33,5 +33,5 @@ rtou8(char8_t *s, rune ch, size_t n)
return 4;
}
- return rtou8(s, RUNE_ERROR, n);
+ return rtou8(s, n, RUNE_ERROR);
}