mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 01:59:00 +08:00
e2d85ffca6
* Fix for libiconv * Update port version
14 lines
554 B
Diff
14 lines
554 B
Diff
diff --git a/lib/relocatable.c b/lib/relocatable.c
|
|
index 89b6c27..1561894 100644
|
|
--- a/lib/relocatable.c
|
|
+++ b/lib/relocatable.c
|
|
@@ -329,7 +329,7 @@ DllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved)
|
|
/* The DLL is being loaded into an application's address range. */
|
|
static char location[MAX_PATH];
|
|
|
|
- if (!GetModuleFileName (module_handle, location, sizeof (location)))
|
|
+ if (!GetModuleFileNameA (module_handle, location, sizeof (location)))
|
|
/* Shouldn't happen. */
|
|
return FALSE;
|
|
|