mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Small code consistency improvement
Adjust the way the increment operators are placed to be consistent
throughout the function. Fixup for commit commit c1da728106
.
This commit is contained in:
@ -142,7 +142,8 @@ ConnectDatabase(const char *dbname, const char *connection_string,
|
|||||||
if (override_dbname)
|
if (override_dbname)
|
||||||
{
|
{
|
||||||
keywords[i] = "dbname";
|
keywords[i] = "dbname";
|
||||||
values[i++] = override_dbname;
|
values[i] = override_dbname;
|
||||||
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
keywords[i] = "fallback_application_name";
|
keywords[i] = "fallback_application_name";
|
||||||
|
Reference in New Issue
Block a user