From 0e3c064533c4dbcff0250e4e7fc00c42db05e8fc Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 9 Jun 2014 18:33:26 +0000 Subject: [PATCH] Remove unneeded variable. --- src/backend/utils/mmgr/balloc.c | 2 -- 1 file changed, 2 deletions(-) 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), -- 2.39.5