diff options
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 27f425e005..52c361d27d 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -1832,7 +1832,8 @@ mystrerror(int e) if (e < 0 || e > sys_nerr) { if (e < 0) e = GetLastError(); - if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, &source, e, 0, + if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, &source, e, 0, buffer, 512, NULL) == 0) { strcpy(buffer, "Unknown Error"); } |