mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 09:20:24 -05:00
Fix indentation that could mask a future bug
Michael Paquier, spotted using Coverity
This commit is contained in:
parent
aa7cf3eef4
commit
d678bde655
1 changed files with 1 additions and 1 deletions
|
|
@ -2364,7 +2364,7 @@ print_function_trftypes(StringInfo buf, HeapTuple proctup)
|
|||
{
|
||||
if (i != 0)
|
||||
appendStringInfoString(buf, ", ");
|
||||
appendStringInfo(buf, "FOR TYPE %s", format_type_be(trftypes[i]));
|
||||
appendStringInfo(buf, "FOR TYPE %s", format_type_be(trftypes[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue