diff options
-rw-r--r-- | findutils/find.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/findutils/find.c b/findutils/find.c index 83aa63f92..ced8922e7 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -1460,12 +1460,10 @@ int find_main(int argc UNUSED_PARAM, char **argv) | |||
1460 | NULL, /* user data */ | 1460 | NULL, /* user data */ |
1461 | 0) /* depth */ | 1461 | 0) /* depth */ |
1462 | ) { | 1462 | ) { |
1463 | status = EXIT_FAILURE; | 1463 | status |= EXIT_FAILURE; |
1464 | goto out; | ||
1465 | } | 1464 | } |
1466 | } | 1465 | } |
1467 | 1466 | ||
1468 | IF_FEATURE_FIND_EXEC_PLUS(status = flush_exec_plus();) | 1467 | IF_FEATURE_FIND_EXEC_PLUS(status |= flush_exec_plus();) |
1469 | out: | ||
1470 | return status; | 1468 | return status; |
1471 | } | 1469 | } |