From f32b147e19e8267f039bf0e6417996c1dbb6a8da Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 30 Sep 2020 22:46:11 -0400 Subject: [PATCH] oops broke win64 --- simpledisplay.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpledisplay.d b/simpledisplay.d index 865cfa4..d93e654 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -4801,7 +4801,7 @@ class WindowsApiException : Exception { buffer[pos++] = ' '; - size_t size = FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, null, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &(buffer[pos]), buffer.length - pos, null); + size_t size = FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, null, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &(buffer[pos]), cast(DWORD) buffer.length - pos, null); pos += size; }