mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
Userland: Fix some weird syntax in find
Spotted this while trying to fix a bug. clang-format approved.
This commit is contained in:
parent
867072c7d8
commit
9e49895bbf
1 changed files with 4 additions and 3 deletions
|
@ -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++;
|
||||
|
|
Loading…
Add table
Reference in a new issue