1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

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: Michael Paquier <michael.paquier@gmail.com>
This commit is contained in:
Peter Eisentraut
2017-09-14 08:30:03 -04:00
parent a9169f0200
commit cb29ff8315

View File

@ -69,7 +69,7 @@ pg_dlopen(char *filename)
void
pg_dlclose(void *handle)
{
NSUnLinkModule(handle, FALSE);
NSUnLinkModule(handle, NSUNLINKMODULE_OPTION_NONE);
}
PGFunction