Skip to content

Commit

Permalink
lib/pattern: fix formatting
Browse files Browse the repository at this point in the history
The fix I committed was not formatted nicely. Make the code look nicer.

Signed-off-by: Vincent Fu <[email protected]>
  • Loading branch information
vincentkfu committed Jan 31, 2023
1 parent 23fb164 commit 7d7a704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pattern.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,9 @@ static int parse_and_fill_pattern(const char *in, unsigned int in_len,
assert(filled);
assert(filled <= out_len);
out_len -= filled;
if (out)
out += filled;
total += filled;
if (out)
out += filled;

} while (in_len);

Expand Down

0 comments on commit 7d7a704

Please sign in to comment.