summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--miscutils/time.c2
-rw-r--r--shell/ash.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/time.c b/miscutils/time.c
index eace390e6..dcc3a5b4c 100644
--- a/miscutils/time.c
+++ b/miscutils/time.c
@@ -464,7 +464,7 @@ int time_main(int argc UNUSED_PARAM, char **argv)
464 int opt; 464 int opt;
465 int ex; 465 int ex;
466 enum { 466 enum {
467#if ENABLE_PLATFORM_MINGW32 467#if !ENABLE_PLATFORM_MINGW32
468 OPT_v = (1 << 0), 468 OPT_v = (1 << 0),
469 OPT_p = (1 << 1), 469 OPT_p = (1 << 1),
470 OPT_a = (1 << 2), 470 OPT_a = (1 << 2),
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) {