mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Remove un-needed braces around single statements.
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.7 1998/02/26 04:34:27 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/linux.c,v 1.8 1998/06/15 19:28:59 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -44,9 +44,7 @@ pg_dlopen(char *filename)
|
||||
if (!dl_initialized)
|
||||
{
|
||||
if (dld_init(dld_find_executable(pg_pathname)))
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* if there are undefined symbols, we want dl to search from the
|
||||
@@ -59,9 +57,7 @@ pg_dlopen(char *filename)
|
||||
* link the file, then check for undefined symbols!
|
||||
*/
|
||||
if (dld_link(filename))
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* If undefined symbols: try to link with the C and math libraries!
|
||||
|
Reference in New Issue
Block a user