Skip to content

Commit 8ab072b

Browse files
Update jellyfish.c
1 parent 7361c1c commit 8ab072b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/logic/jellyfish.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ int fossil_jellyfish_save(const fossil_jellyfish_chain *chain, const char *filep
349349
fprintf(fp, " {\n");
350350
fprintf(fp, " \"input\": \"%s\",\n", input_escaped);
351351
fprintf(fp, " \"output\": \"%s\",\n", output_escaped);
352-
fprintf(fp, " \"timestamp\": %ld,\n", block->timestamp);
352+
fprintf(fp, " \"timestamp\": %llu,\n", block->timestamp);
353353
fprintf(fp, " \"confidence\": %.6f\n", block->confidence);
354354
fprintf(fp, " }%s\n", (i < chain->count - 1) ? "," : "");
355355
}

0 commit comments

Comments
 (0)