From: Robert Haas Date: Mon, 30 Jul 2012 16:24:53 +0000 (+0000) Subject: Minor code beautification. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=9f1436ccbe8935fd6f24b9f08a72c587aed4cfab;p=users%2Frhaas%2Fpostgres.git Minor code beautification. --- diff --git a/src/backend/utils/hash/chash.c b/src/backend/utils/hash/chash.c index bfcf809d36..555dd41a51 100644 --- a/src/backend/utils/hash/chash.c +++ b/src/backend/utils/hash/chash.c @@ -656,7 +656,6 @@ zap: CHashAddToGarbage(table, hashcode & table->bucket_mask, target); target = CHashPtrUnmark(next); - continue; } else { @@ -687,8 +686,8 @@ zap: table->s_scan_restart++; goto retry; } - continue; } + continue; } /* @@ -801,7 +800,6 @@ retry: CHashAddToGarbage(table, hashcode & table->bucket_mask, target); target = CHashPtrUnmark(next); - continue; } else { @@ -809,8 +807,8 @@ retry: target = *pointer_to_target; if (CHashPtrIsMarked(target)) goto retry; - continue; } + continue; } pointer_to_target = &target_node->next;