Commit cb29ff83 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix incorrect use of bool

NSUnLinkModule() doesn't take a bool as second argument but one of set
of specific constants.  The numeric values are the same in this case,
but clean it up while we're cleaning up bool use elsewhere.
Reviewed-by: default avatarMichael Paquier <michael.paquier@gmail.com>
parent a9169f02
......@@ -69,7 +69,7 @@ pg_dlopen(char *filename)
void
pg_dlclose(void *handle)
{
NSUnLinkModule(handle, FALSE);
NSUnLinkModule(handle, NSUNLINKMODULE_OPTION_NONE);
}
PGFunction
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment