fix format warning on mingw

Since we use gnu_printf format on mingw, the windows "I" modifier
is no longer recognized by the format checker. Use "ll" instead.
Meanwhile, MSVC understands that as well.
This commit is contained in:
2025-11-11 09:09:46 +01:00
committed by mdavidsaver
parent 623409466d
commit c811ce218e

View File

@@ -382,7 +382,7 @@ void fdRegId::show(unsigned level) const
if (level > 1u) {
printf("\tfd = %"
#if defined(_WIN32)
"I"
"ll"
#endif
"d, type = %d\n",
fd, type);