diff options
Diffstat (limited to '')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 6a03ef6b4..ca8acd705 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -14242,7 +14242,7 @@ find_command(char *name, struct cmdentry *entry, int act, const char *path) | |||
14242 | #if ENABLE_PLATFORM_MINGW32 | 14242 | #if ENABLE_PLATFORM_MINGW32 |
14243 | if (strchr(name, '/') || strchr(name, '\\') || has_dos_drive_prefix(name)) { | 14243 | if (strchr(name, '/') || strchr(name, '\\') || has_dos_drive_prefix(name)) { |
14244 | #else | 14244 | #else |
14245 | if (strchr(name, '/' != NULL) { | 14245 | if (strchr(name, '/') != NULL) { |
14246 | #endif | 14246 | #endif |
14247 | entry->u.index = -1; | 14247 | entry->u.index = -1; |
14248 | if (act & DO_ABS) { | 14248 | if (act & DO_ABS) { |