From c811ce218e56695c24440d973fc7d1a2f4f6c1d8 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 11 Nov 2025 09:09:46 +0100 Subject: [PATCH] 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. --- modules/libcom/src/fdmgr/fdManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libcom/src/fdmgr/fdManager.cpp b/modules/libcom/src/fdmgr/fdManager.cpp index e25a0f787..f087436f2 100644 --- a/modules/libcom/src/fdmgr/fdManager.cpp +++ b/modules/libcom/src/fdmgr/fdManager.cpp @@ -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);