summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2019-05-26 10:39:36 +0000
committerIvan Zhakov <ivan@apache.org>2019-05-26 10:39:36 +0000
commitbe9c9208158e9b1843087634ef39e18e2fd19ee4 (patch)
tree94259096417d572030eaf46f8e8c2c11d52709c3 /dso
parentf6b51c6fa13193eed4b73fe0d9d2a258f4c3a473 (diff)
downloadapr-be9c9208158e9b1843087634ef39e18e2fd19ee4.tar.gz
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
Diffstat (limited to 'dso')
-rw-r--r--dso/win32/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/win32/dso.c b/dso/win32/dso.c
index 9681d91b5..ef5503b98 100644
--- a/dso/win32/dso.c
+++ b/dso/win32/dso.c
@@ -57,7 +57,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(struct apr_dso_handle_t **res_handle,
HINSTANCE os_handle;
apr_status_t rv;
#ifndef _WIN32_WCE
- UINT em;
+ DWORD em;
#endif
apr_wchar_t wpath[APR_PATH_MAX];