From 00f0093548c773cf4965fab7f7aa4bf4dbf24486 Mon Sep 17 00:00:00 2001 From: David Jones Date: Mon, 4 Jun 2007 11:08:24 +0100 Subject: [PATCH] Mps: removing misleading parens around a return expression. Copied from Perforce Change: 162475 ServerID: perforce.ravenbrook.com --- mps/code/poolmrg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mps/code/poolmrg.c b/mps/code/poolmrg.c index 1493991b775..69924fdccd0 100644 --- a/mps/code/poolmrg.c +++ b/mps/code/poolmrg.c @@ -319,7 +319,7 @@ static Count MRGGuardiansPerSeg(MRG mrg) nGuardians = mrg->extendBy / sizeof(Ref); AVER(nGuardians > 0); - return(nGuardians); + return nGuardians; }