Skip to content

Commit

Permalink
Run astyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Euler Taveira committed Feb 25, 2020
1 parent d56c038 commit 6e488ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ dumpAlterPolicy(FILE *output, PQLPolicy *a, PQLPolicy *b)

if ((a->withcheck == NULL && b->withcheck != NULL) ||
(a->withcheck != NULL && b->withcheck == NULL) ||
(a->withcheck != NULL && b->withcheck != NULL && strcmp(a->withcheck, b->withcheck) != 0))
(a->withcheck != NULL && b->withcheck != NULL &&
strcmp(a->withcheck, b->withcheck) != 0))
{
/*
* If a new ALTER option is added above, don't forget to add 'first = false'.
Expand Down

0 comments on commit 6e488ac

Please sign in to comment.