Userland: Fix some weird syntax in find

Spotted this while trying to fix a bug. clang-format approved.
This commit is contained in:
Valtteri Koskivuori 2021-05-07 22:45:26 +03:00 committed by Andreas Kling
parent 867072c7d8
commit 9e49895bbf

View file

@ -363,9 +363,10 @@ static OwnPtr<Command> parse_complex_command(char* argv[])
while (command && argv[optind] && argv[optind + 1]) {
StringView arg = argv[++optind];
enum { And,
Or } binary_operation
= And;
enum {
And,
Or,
} binary_operation { And };
if (arg == "-a") {
optind++;