oops broke win64

This commit is contained in:
Adam D. Ruppe 2020-09-30 22:46:11 -04:00
parent e87f9445f5
commit f32b147e19
1 changed files with 1 additions and 1 deletions

View File

@ -4801,7 +4801,7 @@ class WindowsApiException : Exception {
buffer[pos++] = ' '; 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; pos += size;
} }