fix paste error

This commit is contained in:
nhmall
2025-05-26 20:18:00 -04:00
parent 317490b49d
commit 35e35b2cbd

View File

@@ -569,7 +569,7 @@ char * sfvalue_uint64(uint64 *a)
{
static char buf[20];
Snprintf(buf, sizeof buf, PRId64, *a);
Snprintf(buf, sizeof buf, PRIu64, *a);
return buf;
}