mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-06 12:20:15 +01: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:
parent
50b8ad30f7
commit
0787646e1d
|
|
@ -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";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user