Skip to content

Commit be9c920

Browse files
author
Ivan Zhakov
committed
Follow-up to r1859519.
* dso/win32/dso.c (apr_dso_load): Use DWORD instead of UINT for old error mode. The have same size, but it's better to use same type as API function (SetThreadErrorMode) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1860052 13f79535-47bb-0310-9956-ffa450edef68
1 parent f6b51c6 commit be9c920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dso/win32/dso.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(struct apr_dso_handle_t **res_handle,
5757
HINSTANCE os_handle;
5858
apr_status_t rv;
5959
#ifndef _WIN32_WCE
60-
UINT em;
60+
DWORD em;
6161
#endif
6262

6363
apr_wchar_t wpath[APR_PATH_MAX];

0 commit comments

Comments
 (0)