From 1395e7ecc422da274aa359a4c6ebfe8f1ec13c5e Mon Sep 17 00:00:00 2001 From: Serge Gautherie <32623169+SergeGautherie@users.noreply.github.com> Date: Mon, 2 Jun 2025 22:30:47 +0200 Subject: [PATCH] [FORMAT] Usage(): Remove redundant LoadFMIFSEntryPoints() call (#8072) `wmain()` already handles this. Addendum to commit 9cea0fddde (r24253). CORE-20218 --- base/system/format/format.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/base/system/format/format.c b/base/system/format/format.c index 3c1d200b59e..57e2b36a0cd 100644 --- a/base/system/format/format.c +++ b/base/system/format/format.c @@ -323,14 +323,6 @@ static VOID Usage(LPWSTR ProgramName) K32LoadStringW(GetModuleHandle(NULL), STRING_HELP, szMsg, ARRAYSIZE(szMsg)); -#ifndef FMIFS_IMPORT_DLL - if (!LoadFMIFSEntryPoints()) - { - ConPrintf(StdOut, szMsg, ProgramName, L""); - return; - } -#endif - szFormats[0] = 0; while (QueryAvailableFileSystemFormat(Index++, szFormatW, &dummy, &dummy, &latestVersion)) {