Fix a few files not properly indented.

pull/4430/head
Jeff Davis 2020-12-18 09:18:55 -08:00
parent 145112f3a0
commit d05a5c8766
4 changed files with 11 additions and 11 deletions

View File

@ -37,10 +37,10 @@
*/
typedef struct DistributeObjectOps
{
char * (*deparse)(Node *);
char *(*deparse)(Node *);
void (*qualify)(Node *);
List * (*preprocess)(Node *, const char *);
List * (*postprocess)(Node *, const char *);
List *(*preprocess)(Node *, const char *);
List *(*postprocess)(Node *, const char *);
ObjectAddress (*address)(Node *, bool);
} DistributeObjectOps;

View File

@ -108,7 +108,7 @@ typedef struct ListCellAndListWrapper
for (int var ## PositionDoNotUse = 0; \
(var ## PositionDoNotUse) < list_length(l) && \
(((var) = list_nth(l, var ## PositionDoNotUse)) || true); \
var ## PositionDoNotUse ++)
var ## PositionDoNotUse++)
#else
#define foreach_ptr_append(var, l) foreach_ptr(var, l)
#endif