Commit 4d436efc authored by Alvaro Herrera's avatar Alvaro Herrera

Clean up double negative, per Tom Lane.

parent 8eb629ae
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Portions Copyright (c) 1990 The Regents of the University of California. * Portions Copyright (c) 1990 The Regents of the University of California.
* All rights reserved. * 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 * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
...@@ -99,8 +99,7 @@ BSD44_derived_dlsym(void *handle, const char *name) ...@@ -99,8 +99,7 @@ BSD44_derived_dlsym(void *handle, const char *name)
void void
BSD44_derived_dlclose(void *handle) BSD44_derived_dlclose(void *handle)
{ {
#if !defined(HAVE_DLOPEN) #if defined(HAVE_DLOPEN)
#else
dlclose(handle); dlclose(handle);
#endif #endif
} }
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