aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRashika Kheria <[email protected]>2013-10-26 16:23:21 +0530
committerGreg Kroah-Hartman <[email protected]>2013-10-26 20:43:23 -0700
commit5bd7797f290d8c6268392a75e51a57c2cff3c50e (patch)
tree6c8a53c55151da8960e0d3d4c4745cb37dde1299
parentc8b93908a2659c059af6a0da9e88c230380fb403 (diff)
Staging: lustre: Fix space required after ','
This patch fixes the following checkpatch.pl warning in lustre/ldlm/interval_tree.c- ERROR: space required after that ',' (ctx:VxV) Signed-off-by: Rashika Kheria <[email protected]> Reviewed-by: Peter P Waskiewicz Jr <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/lustre/lustre/ldlm/interval_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/ldlm/interval_tree.c b/drivers/staging/lustre/lustre/ldlm/interval_tree.c
index d0e0998819bc..fbe76725d945 100644
--- a/drivers/staging/lustre/lustre/ldlm/interval_tree.c
+++ b/drivers/staging/lustre/lustre/ldlm/interval_tree.c
@@ -239,7 +239,7 @@ static void __rotate_change_maxhigh(struct interval_node *node,
left_max = node->in_left ? node->in_left->in_max_high : 0;
right_max = node->in_right ? node->in_right->in_max_high : 0;
node->in_max_high = max_u64(interval_high(node),
- max_u64(left_max,right_max));
+ max_u64(left_max, right_max));
}
/* The left rotation "pivots" around the link from node to node->right, and