make bot happy

This commit is contained in:
J. Nick Koston 2025-07-22 10:04:49 -10:00
parent a5cf74679b
commit b03c83d04e
No known key found for this signature in database

View File

@ -67,7 +67,7 @@ static void dump_field(std::string &out, const char *field_name, float value, in
static void dump_field(std::string &out, const char *field_name, uint64_t value, int indent = 2) {
char buffer[64];
append_field_prefix(out, field_name, indent);
snprintf(buffer, 64, "%" PRIu64, value);
snprintf(buffer, 64, "%llu", value);
append_with_newline(out, buffer);
}