aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2026-02-18 22:59:41 +0100
committerThorsten Töpper <atsutane@freethoughts.de>2026-02-18 22:59:41 +0100
commit6dbce994b660c3bcf587b0b8b45680b1e6b7ba69 (patch)
treeaf068aaef1520d667cb1134d85329907e77fdcd0 /include
parent0ecbd06d797d805092c80253c299e963c391ccbf (diff)
downloadduplicate_finder-6dbce994b660c3bcf587b0b8b45680b1e6b7ba69.tar.gz
duplicate_finder-6dbce994b660c3bcf587b0b8b45680b1e6b7ba69.tar.bz2
file_processor: fix and additional debug output
Diffstat (limited to 'include')
-rw-r--r--include/file_processor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/file_processor.h b/include/file_processor.h
index cdb30bb..06b6d1d 100644
--- a/include/file_processor.h
+++ b/include/file_processor.h
@@ -24,9 +24,9 @@
* The hashes in human-readable strings
*/
struct df_hashstrings {
- char blake2[DF_STR_SIZE_512];
- char sha256[DF_STR_SIZE_256];
- char sha512[DF_STR_SIZE_512];
+ char blake2[DF_STR_SIZE_512+1];
+ char sha256[DF_STR_SIZE_256+1];
+ char sha512[DF_STR_SIZE_512+1];
};
/**