[PATCH 7/30] return statement cleanup - kill pointless parenthesesin fs/xfs/xfs_fsops.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 19:14:06 EST


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

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

--- linux-2.6.10-rc3-bk8-orig/fs/xfs/xfs_fsops.c 2004-10-18 23:55:06.000000000 +0200
+++ linux-2.6.10-rc3-bk8/fs/xfs/xfs_fsops.c 2004-12-15 22:44:07.000000000 +0100
@@ -520,7 +520,7 @@ xfs_reserve_blocks(
if (inval == (__uint64_t *)NULL) {
outval->resblks = mp->m_resblks;
outval->resblks_avail = mp->m_resblks_avail;
- return(0);
+ return 0;
}

request = *inval;
@@ -556,7 +556,7 @@ xfs_reserve_blocks(
outval->resblks = mp->m_resblks;
outval->resblks_avail = mp->m_resblks_avail;
XFS_SB_UNLOCK(mp, s);
- return(0);
+ return 0;
}

void


-
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/