diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-16 21:32:44 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-16 21:32:44 -0800 |
commit | 27dedf0c3b78d1072fb5449149421284f9e5297b (patch) | |
tree | 80da2302f50bb1f396611a4a54a6da52a4592bd0 /diffcore-rename.c | |
parent | 60d64db4614b1007ca37c228923ec1964d5ad394 (diff) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diffcore-rename.c')
-rw-r--r-- | diffcore-rename.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diffcore-rename.c b/diffcore-rename.c index e17dd90058..6a9d95d059 100644 --- a/diffcore-rename.c +++ b/diffcore-rename.c @@ -283,7 +283,7 @@ void diffcore_rename(struct diff_options *options) register_rename_src(p->one, 1); } if (rename_dst_nr == 0 || - (0 <= rename_limit && rename_limit < rename_dst_nr)) + (0 < rename_limit && rename_limit < rename_dst_nr)) goto cleanup; /* nothing to do */ /* We really want to cull the candidates list early |