Control: tags 1063079 patch

Jody Bruchon, the upstream of jdupes sent a fix for this issue:

------
It's a very simple number mess-up in jdupes.h:

#define FF_NOT_UNIQUE           (1U << 5)
#define FF_HASHDB_DIRTY         (1U << 5)

Just change the number to not overlap:

#define FF_HASHDB_DIRTY         (1U << 6)

That fixed it in my tests.
------

Regards,

Eriberto

Reply via email to