From 5ca6c6b105e922a14a779192df24f366504f18fa Mon Sep 17 00:00:00 2001 From: Dennis Date: Mon, 17 Jun 2024 13:18:51 +0200 Subject: [PATCH] com.d: Fix EXCEPINFO.scode capitalization --- com.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.d b/com.d index e7cda5d..3e59732 100644 --- a/com.d +++ b/com.d @@ -971,7 +971,7 @@ mixin template IDispatchImpl() { } catch(Throwable e) { // FIXME: fill in the exception info if(except !is null) { - except.sCode = 1; + except.scode = 1; import std.utf; except.bstrDescription = SysAllocString(toUTFz!(wchar*)(e.toString())); except.bstrSource = SysAllocString("amazing"w.ptr);