diff options
Diffstat (limited to 'coreutils/expand.c')
-rw-r--r-- | coreutils/expand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/expand.c b/coreutils/expand.c index 649b4c175..2f6a708b5 100644 --- a/coreutils/expand.c +++ b/coreutils/expand.c | |||
@@ -49,7 +49,7 @@ static void expand(FILE *file, unsigned tab_size, unsigned opt) | |||
49 | unsigned len; | 49 | unsigned len; |
50 | *ptr = '\0'; | 50 | *ptr = '\0'; |
51 | # if ENABLE_FEATURE_ASSUME_UNICODE | 51 | # if ENABLE_FEATURE_ASSUME_UNICODE |
52 | len = bb_mbstrlen(ptr_strbeg); | 52 | len = unicode_strlen(ptr_strbeg); |
53 | # else | 53 | # else |
54 | len = ptr - ptr_strbeg; | 54 | len = ptr - ptr_strbeg; |
55 | # endif | 55 | # endif |
@@ -105,7 +105,7 @@ static void unexpand(FILE *file, unsigned tab_size, unsigned opt) | |||
105 | char c; | 105 | char c; |
106 | c = ptr[n]; | 106 | c = ptr[n]; |
107 | ptr[n] = '\0'; | 107 | ptr[n] = '\0'; |
108 | len = bb_mbstrlen(ptr); | 108 | len = unicode_strlen(ptr); |
109 | ptr[n] = c; | 109 | ptr[n] = c; |
110 | } | 110 | } |
111 | # else | 111 | # else |