diff options
Diffstat (limited to 'extra/perror.c')
-rw-r--r-- | extra/perror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/perror.c b/extra/perror.c index e96002cbb7b..3bc5120db48 100644 --- a/extra/perror.c +++ b/extra/perror.c @@ -204,7 +204,7 @@ static my_bool print_win_error_msg(DWORD error, my_bool verbose) NULL)) { if (verbose) - printf("Win32 error code %d: %s", error, s); + printf("Win32 error code %lu: %s", error, s); else puts(s); LocalFree(s); |