aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-03-10 23:45:06 -0800
committerJosh Triplett <josh@freedesktop.org>2007-03-10 23:45:06 -0800
commit2efa8b2c0a19bfbf69a91ae80540ccc15ea993eb (patch)
tree88611066f8b52c0988824e6d883fb0f15d83e107 /expand.c
parentAvoid returning an uninitialized pointer from dup_list of an empty list (diff)
downloadsparse-2efa8b2c0a19bfbf69a91ae80540ccc15ea993eb.tar.gz
sparse-2efa8b2c0a19bfbf69a91ae80540ccc15ea993eb.tar.bz2
sparse-2efa8b2c0a19bfbf69a91ae80540ccc15ea993eb.zip
Remove stray space from expand_compare in expand.c
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Diffstat (limited to 'expand.c')
-rw-r--r--expand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expand.c b/expand.c
index cd13c4d..bd698a8 100644
--- a/expand.c
+++ b/expand.c
@@ -472,7 +472,7 @@ static int expand_compare(struct expression *expr)
}
if (simplify_cmp_binop(expr, left->ctype))
return 0;
- if (simplify_float_cmp(expr, left->ctype))
+ if (simplify_float_cmp(expr, left->ctype))
return 0;
return cost + 1;
}