Small code consistency improvement

Adjust the way the increment operators are placed to be consistent
throughout the function.  Fixup for commit commit c1da7281060.
This commit is contained in:
Peter Eisentraut 2025-04-25 12:56:40 +02:00
parent 50b8ad30f7
commit 0787646e1d

View File

@ -142,7 +142,8 @@ ConnectDatabase(const char *dbname, const char *connection_string,
if (override_dbname)
{
keywords[i] = "dbname";
values[i++] = override_dbname;
values[i] = override_dbname;
i++;
}
keywords[i] = "fallback_application_name";