Fix indentation.
authorTatsuo Ishii <ishii@postgresql.org>
Fri, 18 Jul 2025 06:39:40 +0000 (15:39 +0900)
committerTatsuo Ishii <ishii@postgresql.org>
Fri, 18 Jul 2025 06:39:40 +0000 (15:39 +0900)
Fix indentation by running pgindent.

src/protocol/pool_proto_modules.c

index b4a7d238ce03f94f462fbbe1f98aeb961d5f2f0b..11befe97976ef60f106066fa4da9946af50d2304 100644 (file)
@@ -3829,9 +3829,9 @@ pi_set(int node_id)
        ProcessInfo *pi = pool_get_my_process_info();
 
        if (node_id < BITS_PER_TYPE(uint64))
-               pi->node_ids[0] |= ((uint64)1 << node_id);
+               pi->node_ids[0] |= ((uint64) 1 << node_id);
        else
-               pi->node_ids[1] |= ((uint64)1 << (node_id - BITS_PER_TYPE(uint64)));
+               pi->node_ids[1] |= ((uint64) 1 << (node_id - BITS_PER_TYPE(uint64)));
 }
 
 /*
@@ -3843,9 +3843,9 @@ is_pi_set(uint64 *node_ids, int node_id)
        int                     set;
 
        if (node_id < BITS_PER_TYPE(uint64))
-               set = node_ids[0] & ((uint64)1 << node_id);
+               set = node_ids[0] & ((uint64) 1 << node_id);
        else
-               set = node_ids[1] & ((uint64)1 << (node_id - BITS_PER_TYPE(uint64)));
+               set = node_ids[1] & ((uint64) 1 << (node_id - BITS_PER_TYPE(uint64)));
        return set != 0;
 }