fix: editing the type of stdint

- u_int64_t is now only uint64_t
This commit is contained in:
Raphael 2025-09-19 16:54:40 +02:00
parent facbd72540
commit 3295958025
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ int flag_p(va_list args, int fd)
{
char *to_print;
int to_ret;
u_int64_t number;
uint64_t number;
number = va_arg(args, unsigned long long);
to_ret = 0;