[PATCH 10/30] return statement cleanup - kill pointless parenthesesin fs/xfs/support/debug.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 19:31:43 EST


This patch removes pointless parentheses from return statements in
fs/xfs/support/debug.c

Signed-off-by: Jesper Juhl <juhl-lkml@xxxxxx>

--- linux-2.6.10-rc3-bk8-orig/fs/xfs/support/debug.c 2004-10-18 23:53:21.000000000 +0200
+++ linux-2.6.10-rc3-bk8/fs/xfs/support/debug.c 2004-12-15 22:51:25.000000000 +0100
@@ -70,7 +70,7 @@ random(void)
lo = rv % 127773;
rv = 16807 * lo - 2836 * hi;
if( rv <= 0 ) rv += 2147483647;
- return( RandomValue = rv );
+ return (RandomValue = rv);
}

int



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/