Skip to content

Commit

Permalink
Update agentc.c
Browse files Browse the repository at this point in the history
  • Loading branch information
500Foods authored May 18, 2024
1 parent 1872258 commit 06c4e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AgentC/agentc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,7 @@ XXH64_hash_t calculate_file_hash(const char *path) {
}

void format_hash_string(XXH64_hash_t hash, char *hash_str) {
snprintf(hash_str, 17, "%016llx", hash);
snprintf(hash_str, 17, "%016llx", (unsigned long long)hash);
}

void print_summary(int fileset_id, int fileCount, int matchedCount, int addedCount, int updatedCount, int missingCount) {
Expand Down

0 comments on commit 06c4e81

Please sign in to comment.