[git commit] suppress a few compile warnings
Denys Vlasenko
vda.linux at googlemail.com
Wed Jun 24 07:31:30 UTC 2020
commit: https://git.busybox.net/busybox/commit/?id=d5314e71294d228cff5d86e00d15661461f68fc9
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
libbb/lineedit.c | 2 +-
shell/hush.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libbb/lineedit.c b/libbb/lineedit.c
index de236dea0..e40a72064 100644
--- a/libbb/lineedit.c
+++ b/libbb/lineedit.c
@@ -99,7 +99,7 @@ static bool BB_ispunct(CHAR_T c)
# if ENABLE_FEATURE_EDITING_VI
static bool BB_isalnum_or_underscore(CHAR_T c)
{
- return ((unsigned)c < 256 && isalnum(c)) || c == '_';
+ return isalnum(c) || c == '_';
}
# endif
# define BB_ispunct(c) ispunct(c)
diff --git a/shell/hush.c b/shell/hush.c
index cab7ea5b0..2cf2170ca 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -7917,7 +7917,7 @@ static const struct built_in_command *find_builtin(const char *name)
return find_builtin_helper(name, bltins2, &bltins2[ARRAY_SIZE(bltins2)]);
}
-#if EDITING_HAS_get_exe_name
+#if ENABLE_HUSH_JOB && EDITING_HAS_get_exe_name
static const char * FAST_FUNC get_builtin_name(int i)
{
if (/*i >= 0 && */ i < ARRAY_SIZE(bltins1)) {
More information about the busybox-cvs
mailing list