diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a7c51d00ba..5b5f71b7f8 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-22 09:52 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * source/vm/dynlibhb.c + ! Minor typo. + 2009-09-22 09:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/hbwince.h * source/common/hbwince.c diff --git a/harbour/source/vm/dynlibhb.c b/harbour/source/vm/dynlibhb.c index 855d46f7da..4d97675dd0 100644 --- a/harbour/source/vm/dynlibhb.c +++ b/harbour/source/vm/dynlibhb.c @@ -105,7 +105,7 @@ HB_FUNC( HB_LIBLOAD ) { LPTSTR lpFileName = HB_TCHAR_CONVTO( hb_parc( 1 ) ); - hDynLib = ( void * ) LoadLibraryA( lpFileName ); + hDynLib = ( void * ) LoadLibrary( lpFileName ); HB_TCHAR_FREE( lpFileName ); }