From: Raphael Riemann raphael.riemann@gmail.com
Microsoft Flight Simulator 2024 needs this sice SU1 https://github.com/ValveSoftware/Proton/issues/8255#issuecomment-2640144747 --- dlls/kernelbase/debug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/kernelbase/debug.c b/dlls/kernelbase/debug.c index 9fad58fd61e..ca434c8a400 100644 --- a/dlls/kernelbase/debug.c +++ b/dlls/kernelbase/debug.c @@ -813,7 +813,7 @@ HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterRuntimeExceptionModule( const /*********************************************************************** * WerRegisterCustomMetadata (kernelbase.@) */ -HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterCustomMetadata( const WCHAR *key, const WCHAR *value) +HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterCustomMetadata( const WCHAR *key, const WCHAR *value ) { FIXME( "(%s, %s) stub\n", debugstr_w(key), debugstr_w(value) ); return S_OK; @@ -863,9 +863,9 @@ HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerUnregisterRuntimeExceptionModule( cons /*********************************************************************** * WerUnregisterCustomMetadata (kernelbase.@) */ -HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerUnregisterCustomMetadata( const WCHAR *key) +HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerUnregisterCustomMetadata( const WCHAR *key ) { - FIXME( "(%s, %s) stub\n", debugstr_w(key)); + FIXME( "(%s) stub\n", debugstr_w(key)); return S_OK; }