lkml.org 
[lkml]   [2004]   [Dec]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH 10/30] return statement cleanup - kill pointless parentheses in fs/xfs/support/debug.c
This patch removes pointless parentheses from return statements in 
fs/xfs/support/debug.c

Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>

--- 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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:08    [W:0.024 / U:0.612 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site