From: Robert Haas Date: Mon, 9 Jun 2014 18:33:26 +0000 (+0000) Subject: Remove unneeded variable. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=0e3c064533c4dbcff0250e4e7fc00c42db05e8fc;p=users%2Frhaas%2Fpostgres.git Remove unneeded variable. --- diff --git a/src/backend/utils/mmgr/balloc.c b/src/backend/utils/mmgr/balloc.c index 3928c85ca0..fb751a9f75 100644 --- a/src/backend/utils/mmgr/balloc.c +++ b/src/backend/utils/mmgr/balloc.c @@ -207,13 +207,11 @@ static MemoryContextMethods BlockAllocatorMethods = { MemoryContext BlockAllocatorContextCreate(MemoryContext parent, const char *name) { - Size allocator_size; int heapno; int fclass; BlockAllocatorContext *context; char *base = NULL; - allocator_size = sizeof(BlockAllocatorContext); context = (BlockAllocatorContext *) MemoryContextCreate(T_BlockAllocatorContext, sizeof(BlockAllocatorContext),