From 6d853be981e275ebfb571aa508f2f275e4c3c3f1 Mon Sep 17 00:00:00 2001 From: Stanislav Motylkov Date: Thu, 18 Apr 2024 18:22:17 +0300 Subject: [PATCH] [ZIPFLDR] Make function prototype consistent It is the only function in that file that used this format, all the others are one line. Spotted by Whindmar Saksit. --- dll/shellext/zipfldr/zipfldr.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dll/shellext/zipfldr/zipfldr.cpp b/dll/shellext/zipfldr/zipfldr.cpp index df2079e1827..04f7e73d995 100644 --- a/dll/shellext/zipfldr/zipfldr.cpp +++ b/dll/shellext/zipfldr/zipfldr.cpp @@ -174,11 +174,7 @@ STDAPI DllUnregisterServer() EXTERN_C BOOL WINAPI -RouteTheCall( - IN HWND hWndOwner, - IN HINSTANCE hInstance, - IN PCWSTR lpStringArg, - IN INT Show) +RouteTheCall(IN HWND hWndOwner, IN HINSTANCE hInstance, IN PCWSTR lpStringArg, IN INT Show) { CStringW path = lpStringArg; PathRemoveBlanksW(path.GetBuffer());