1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Fix whitespace

This commit is contained in:
Peter Eisentraut
2019-03-01 20:56:53 +01:00
parent 97b6f2eb75
commit aad21d4c3c
5 changed files with 134 additions and 136 deletions

View File

@ -535,13 +535,13 @@ ECPGset_var(int number, void *pointer, int lineno)
struct sqlca_t *sqlca = ECPGget_sqlca();
if (sqlca == NULL)
{
ecpg_raise(lineno, ECPG_OUT_OF_MEMORY,
ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
return;
}
{
ecpg_raise(lineno, ECPG_OUT_OF_MEMORY,
ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
return;
}
ecpg_init_sqlca(sqlca);
ecpg_init_sqlca(sqlca);
for (ptr = ivlist; ptr != NULL; ptr = ptr->next)
{