From bdf46af748d0f15f257c99bf06e9e25aba6a24f9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 26 Apr 2018 14:47:16 -0400 Subject: Post-feature-freeze pgindent run. Discussion: https://postgr.es/m/15719.1523984266@sss.pgh.pa.us --- src/fe_utils/conditional.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/fe_utils/conditional.c') 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++; -- cgit v1.2.3