summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2016-03-31 11:30:31 +0200
committerPatrick Steinhardt <ps@pks.im>2016-03-31 11:33:40 +0200
commit1bce14874f1febe8c11bb2691210dd3c5eb6ca53 (patch)
tree51ee6fc33c6bb97756306c5fe1667451883e394b
parent2f0450f4d635358f6da5d174c128b9ed1059bbf8 (diff)
downloadlibgit2-1bce14874f1febe8c11bb2691210dd3c5eb6ca53.tar.gz
xdiff/xprepare: use the XDF_DIFF_ALG() macro to access flag bits
Commit 307ab20b3 ("xdiff: PATIENCE/HISTOGRAM are not independent option bits", 19-02-2012) introduced the XDF_DIFF_ALG() macro to access the flag bits used to represent the diff algorithm requested. In addition, code which had used explicit manipulation of the flag bits was changed to use the macros. However, one example of direct manipulation remains. Update this code to use the XDF_DIFF_ALG() macro. This patch was originally written by Ramsay Jones (see commit 5cd6978a9cfef58de061a9525f3678ade479564d in git.git).
-rw-r--r--src/xdiff/xprepare.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdiff/xprepare.c b/src/xdiff/xprepare.c
index 63a22c630..ffb70df49 100644
--- a/src/xdiff/xprepare.c
+++ b/src/xdiff/xprepare.c
@@ -304,7 +304,7 @@ int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
return -1;
}
- if (!(xpp->flags & XDF_HISTOGRAM_DIFF))
+ if (XDF_DIFF_ALG((xpp->flags) & XDF_HISTOGRAM_DIFF))
xdl_free_classifier(&cf);
return 0;