Win32: Fix potential buffer overrun

Found with VS static analysis.
diff --git a/src/win32_init.c b/src/win32_init.c
index 78592cc..ff81307 100644
--- a/src/win32_init.c
+++ b/src/win32_init.c
@@ -452,7 +452,7 @@
                    GetLastError() & 0xffff,
                    MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
                    buffer,
-                   sizeof(buffer),
+                   sizeof(buffer) / sizeof(WCHAR),
                    NULL);
     WideCharToMultiByte(CP_UTF8, 0, buffer, -1, message, sizeof(message), NULL, NULL);