medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 2e0b44727846dfccfab45a00215cd32bafb6f85a
parent f6805d12067a15e6d8a22513920bcbcadc3c3539
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Sep 14 16:21:13 +0100

Typo

Diffstat:
win32_library.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/win32_library.h b/win32_library.h @@ -20,7 +20,7 @@ const char * library_last_error() { * this should be ok */ static char buf[ 1024 ]; - FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError() + FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), MAKELANGID( LANG_NEUTRAL, SUBLANG_DEFAULT ), buf, sizeof( buf ), NULL ); return buf; }