aboutsummaryrefslogtreecommitdiff
path: root/modutils/lsmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r--modutils/lsmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index 20d9cf1a8..cc6b6162f 100644
--- a/modutils/lsmod.c
+++ b/modutils/lsmod.c
@@ -64,7 +64,7 @@ int lsmod_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
64 } else 64 } else
65 token[3] = (char *) ""; 65 token[3] = (char *) "";
66# if ENABLE_FEATURE_ASSUME_UNICODE 66# if ENABLE_FEATURE_ASSUME_UNICODE
67 name_len = bb_mbstrlen(token[0]); 67 name_len = unicode_strlen(token[0]);
68 name_len = (name_len > 19) ? 0 : 19 - name_len; 68 name_len = (name_len > 19) ? 0 : 19 - name_len;
69 printf("%s%*s %8s %2s %s\n", token[0], name_len, "", token[1], token[2], token[3]); 69 printf("%s%*s %8s %2s %s\n", token[0], name_len, "", token[1], token[2], token[3]);
70# else 70# else
@@ -78,7 +78,7 @@ int lsmod_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
78 // so trimming the trailing char is just what we need! 78 // so trimming the trailing char is just what we need!
79 token[3][strlen(token[3])-1] = '\0'; 79 token[3][strlen(token[3])-1] = '\0';
80# if ENABLE_FEATURE_ASSUME_UNICODE 80# if ENABLE_FEATURE_ASSUME_UNICODE
81 name_len = bb_mbstrlen(token[0]); 81 name_len = unicode_strlen(token[0]);
82 name_len = (name_len > 19) ? 0 : 19 - name_len; 82 name_len = (name_len > 19) ? 0 : 19 - name_len;
83 printf("%s%*s %8s %2s %s\n", token[0], name_len, "", token[1], token[2], token[3]); 83 printf("%s%*s %8s %2s %s\n", token[0], name_len, "", token[1], token[2], token[3]);
84# else 84# else