1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Remove spurious semicolons.

Petr Jelinek
This commit is contained in:
Heikki Linnakangas 2015-03-31 15:12:27 +03:00
parent 9485663134
commit 71b368962f
2 changed files with 2 additions and 2 deletions

View File

@ -13234,7 +13234,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
r->relname = strVal(lsecond(names)); r->relname = strVal(lsecond(names));
break; break;
case 3: case 3:
r->catalogname = strVal(linitial(names));; r->catalogname = strVal(linitial(names));
r->schemaname = strVal(lsecond(names)); r->schemaname = strVal(lsecond(names));
r->relname = strVal(lthird(names)); r->relname = strVal(lthird(names));
break; break;

View File

@ -955,7 +955,7 @@ chr (PG_FUNCTION_ARGS)
if (bytes == 2) if (bytes == 2)
{ {
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F); wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
wch[1] = 0x80 | (cvalue & 0x3F);; wch[1] = 0x80 | (cvalue & 0x3F);
} }
else if (bytes == 3) else if (bytes == 3)
{ {