diff options
Diffstat (limited to 'libbb/lineedit.c')
-rw-r--r-- | libbb/lineedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index b73f1d6..c50b31d 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -878,7 +878,7 @@ static void showfiles(void) /* find the longest file name - use that as the column width */ for (row = 0; row < nrows; row++) { - l = bb_mbstrlen(matches[row]); + l = unicode_strlen(matches[row]); if (column_width < l) column_width = l; } @@ -898,7 +898,7 @@ static void showfiles(void) for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) { printf("%s%-*s", matches[n], - (int)(column_width - bb_mbstrlen(matches[n])), "" + (int)(column_width - unicode_strlen(matches[n])), "" ); } puts(matches[n]); |