pkolaczk / fclones

Efficient Duplicate File Finder
MIT License
1.84k stars 70 forks source link

Fix compilation on non 64-bit targets #175

Closed danpashin closed 1 year ago

danpashin commented 1 year ago

Should this be usize instead of u64? It has the same size as u64 on 64-bit platforms and size of 4 bytes on 32-bit platforms.

'Cause of this fixed usage project doesn't compile for mips platform for example.

https://github.com/pkolaczk/fclones/blob/0fcad39914323bddc5268f8532f1e21cfb32b3ca/src/group.rs#L618

pkolaczk commented 1 year ago

Thank you!