diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-26 14:47:16 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-26 14:47:16 -0400 |
commit | bdf46af748d0f15f257c99bf06e9e25aba6a24f9 (patch) | |
tree | 3637d69ad413fdc23098cc2cf94b2cd57fd44dab /src/fe_utils/conditional.c | |
parent | f83bf385c1dad4964e0d899174989a1668536182 (diff) | |
download | postgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.tar.gz postgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.zip |
Post-feature-freeze pgindent run.
Discussion: https://postgr.es/m/15719.1523984266@sss.pgh.pa.us
Diffstat (limited to 'src/fe_utils/conditional.c')
-rw-r--r-- | src/fe_utils/conditional.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fe_utils/conditional.c b/src/fe_utils/conditional.c index 0af80521ce1..db2a0a53b3a 100644 --- a/src/fe_utils/conditional.c +++ b/src/fe_utils/conditional.c @@ -75,8 +75,9 @@ conditional_stack_depth(ConditionalStack cstack) return -1; else { - IfStackElem *p = cstack->head; + IfStackElem *p = cstack->head; int depth = 0; + while (p != NULL) { depth++; |