From a74e4aaae097d338e1b0eabc96134cb4f05b0660 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 10 May 2005 04:53:04 +0000 Subject: [PATCH] correcting cast for tiger git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@34003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dynlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index 558b579e0c..6a0ce9235e 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -480,7 +480,7 @@ void *dlopen(const char *path, int WXUNUSED(mode) /* mode is ignored */) int dlclose(void *handle) { - NSUnLinkModule( handle, NSUNLINKMODULE_OPTION_NONE); + NSUnLinkModule( (NSModule) handle, NSUNLINKMODULE_OPTION_NONE); return 0; }