We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce4a80 commit 5d82a29Copy full SHA for 5d82a29
code/logic/jellyfish.c
@@ -84,7 +84,7 @@ void fossil_jellyfish_cleanup(fossil_jellyfish_chain *chain) {
84
85
void fossil_jellyfish_dump(const fossil_jellyfish_chain *chain) {
86
for (size_t i = 0; i < chain->count; ++i) {
87
- printf("Block %zu:\n", i);
+ printf("Block %llu:\n", (unsigned long long)i);
88
printf(" Input: %s\n", chain->memory[i].input);
89
printf(" Output: %s\n", chain->memory[i].output);
90
printf(" Time: %llu\n", (unsigned long long)chain->memory[i].timestamp);
0 commit comments