[PATCH] ext4: if expression format
authorAvantika Mathur <mathur@us.ibm.com>
Thu, 7 Dec 2006 04:41:33 +0000 (20:41 -0800)
committerLinus Torvalds <torvalds@woody.osdl.org>
Thu, 7 Dec 2006 16:39:48 +0000 (08:39 -0800)
commit7e0289766a0750a56260565bd3b74eb544483d45
tree1982232640bf359c572bd0b905005a79fd9c6030
parent7d1c520bb57e4b5e94ec937c13553dccf473341b
[PATCH] ext4: if expression format

changes instances of
if ((lhs = expression)) {

to the preferred coding style

lhs=expression;
if (lhs) {

Signed-off-by: Avantika Mathur <mathur@us.ibm.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/ext4/extents.c