aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 35aa3f6e6..afb865146 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -9454,7 +9454,7 @@ describe_command(char *command, const char *path, int describe_command_verbose)
9454 int j = entry.u.index; 9454 int j = entry.u.index;
9455 char *p; 9455 char *p;
9456#if ENABLE_PLATFORM_MINGW32 && ENABLE_FEATURE_SH_STANDALONE 9456#if ENABLE_PLATFORM_MINGW32 && ENABLE_FEATURE_SH_STANDALONE
9457 if (j == INT_MIN) { 9457 if (j < -1) {
9458 p = (char *)bb_basename(command); 9458 p = (char *)bb_basename(command);
9459 goto describe; 9459 goto describe;
9460 } 9460 }