Skip to content

Commit 5cd6978

Browse files
ramsay-jonesgitster
authored andcommitted
xdiff/xprepare: use the XDF_DIFF_ALG() macro to access flag bits
Commit 307ab20 ("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. Signed-off-by: Ramsay Jones <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a2558fb commit 5cd6978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xdiff/xprepare.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ int xdl_prepare_env(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp,
304304
return -1;
305305
}
306306

307-
if (!(xpp->flags & XDF_HISTOGRAM_DIFF))
307+
if (XDF_DIFF_ALG(xpp->flags) != XDF_HISTOGRAM_DIFF)
308308
xdl_free_classifier(&cf);
309309

310310
return 0;

0 commit comments

Comments
 (0)