mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Clean up double negative, per Tom Lane.
This commit is contained in:
parent
8eb629aec6
commit
4d436efca8
@ -3,7 +3,7 @@
|
||||
* Portions Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/backend/port/dynloader/netbsd.c,v 1.23 2008/03/05 19:42:11 alvherre Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/port/dynloader/netbsd.c,v 1.24 2008/03/05 21:14:10 alvherre Exp $
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@ -99,8 +99,7 @@ BSD44_derived_dlsym(void *handle, const char *name)
|
||||
void
|
||||
BSD44_derived_dlclose(void *handle)
|
||||
{
|
||||
#if !defined(HAVE_DLOPEN)
|
||||
#else
|
||||
#if defined(HAVE_DLOPEN)
|
||||
dlclose(handle);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user