mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Fix code indentation violations introduced by recent commit
The two culprit commits are5765cfeand5e0c761. Per buildfarm member koel for the first commit, while I have noticed the second one in passing.
This commit is contained in:
@@ -2246,7 +2246,7 @@ evalStandardFunc(CState *st,
|
||||
* This value is double braced to workaround GCC bug 53119, which seems to
|
||||
* exist at least on gcc (Debian 4.7.2-5) 4.7.2, 32-bit.
|
||||
*/
|
||||
PgBenchValue vargs[MAX_FARGS] = { { 0 } };
|
||||
PgBenchValue vargs[MAX_FARGS] = {{0}};
|
||||
|
||||
for (nargs = 0; nargs < MAX_FARGS && l != NULL; nargs++, l = l->next)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user