From 925fa4b6e4bbd341cdd458a1679ea23d3f1e2cbf Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Fri, 9 Sep 2022 14:35:17 +0100 Subject: [PATCH] installer: CustomActions: DeferredAction: minor fix --- build/VStudio/installer/CustomActions/CustomActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/VStudio/installer/CustomActions/CustomActions.cpp b/build/VStudio/installer/CustomActions/CustomActions.cpp index 0db9c4fc..db33920e 100644 --- a/build/VStudio/installer/CustomActions/CustomActions.cpp +++ b/build/VStudio/installer/CustomActions/CustomActions.cpp @@ -151,7 +151,7 @@ UINT __stdcall DeferredAction(MSIHANDLE MsiHandle) ExitOnNullWithLastError(Proc, hr, "Failed to GetProcAddress"); err = ((HRESULT (*)(int, PWSTR *))Proc)(Argc, Argv); - ExitOnWin32Error(err, hr, "Failed to %S", ProcName); + ExitOnWin32Error(err, hr, "Failed to %s", ProcName); } else {