From: Gilles Depeyrot Date: Wed, 20 Feb 2002 07:22:46 +0000 (+0000) Subject: corrected typo in Darwin specific code X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a8522481f71a43df96d6322890e9f539c7737993 corrected typo in Darwin specific code git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index 716ba55d7f..fcefd941e3 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -477,7 +477,7 @@ void *dlopen(const char *path, int mode /* mode is ignored */) int dlclose(void *handle) { - NSUnLinkModule( m_handle, NSUNLINKMODULE_OPTION_NONE); + NSUnLinkModule( handle, NSUNLINKMODULE_OPTION_NONE); return 0; }