Should pass NSUNLINKMODULE_OPTION_NONE instead of FALSE as the second

argument to NSUnLinkModule.  Both macros have the same value (0), so this
is a cosmetic change.
This commit is contained in:
wtc%netscape.com 2003-01-23 17:07:50 +00:00
parent a66a4d539e
commit 20a8afc3d9

View File

@ -1269,7 +1269,7 @@ PR_UnloadLibrary(PRLibrary *lib)
#elif defined(USE_HPSHL)
result = shl_unload(lib->dlh);
#elif defined(USE_MACH_DYLD)
result = NSUnLinkModule(lib->dlh, FALSE);
result = NSUnLinkModule(lib->dlh, NSUNLINKMODULE_OPTION_NONE);
#else
#error Configuration error
#endif