Commit bf2fb2e0 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix whitespace

parent efd9366d
...@@ -34,7 +34,7 @@ library_name_compare(const void *p1, const void *p2) ...@@ -34,7 +34,7 @@ library_name_compare(const void *p1, const void *p2)
int slen1 = strlen(str1); int slen1 = strlen(str1);
int slen2 = strlen(str2); int slen2 = strlen(str2);
int cmp = strcmp(str1, str2); int cmp = strcmp(str1, str2);
if (slen1 != slen2) if (slen1 != slen2)
return slen1 - slen2; return slen1 - slen2;
if (cmp != 0) if (cmp != 0)
...@@ -230,18 +230,18 @@ check_loadable_libraries(void) ...@@ -230,18 +230,18 @@ check_loadable_libraries(void)
lib = "$libdir/plpython2"; lib = "$libdir/plpython2";
llen = strlen(lib); llen = strlen(lib);
} }
strcpy(cmd, "LOAD '"); strcpy(cmd, "LOAD '");
PQescapeStringConn(conn, cmd + strlen(cmd), lib, llen, NULL); PQescapeStringConn(conn, cmd + strlen(cmd), lib, llen, NULL);
strcat(cmd, "'"); strcat(cmd, "'");
res = PQexec(conn, cmd); res = PQexec(conn, cmd);
if (PQresultStatus(res) != PGRES_COMMAND_OK) if (PQresultStatus(res) != PGRES_COMMAND_OK)
{ {
found = true; found = true;
was_load_failure = true; was_load_failure = true;
if (script == NULL && (script = fopen_priv(output_path, "w")) == NULL) if (script == NULL && (script = fopen_priv(output_path, "w")) == NULL)
pg_fatal("could not open file \"%s\": %s\n", pg_fatal("could not open file \"%s\": %s\n",
output_path, strerror(errno)); output_path, strerror(errno));
...@@ -251,7 +251,7 @@ check_loadable_libraries(void) ...@@ -251,7 +251,7 @@ check_loadable_libraries(void)
} }
else else
was_load_failure = false; was_load_failure = false;
PQclear(res); PQclear(res);
} }
......
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