Skip to content

Commit d6a892e

Browse files
committed
Remove spurious semicolons.
Petr Jelinek
1 parent 22b3f5b commit d6a892e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/parser/gram.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12822,7 +12822,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
1282212822
r->relname = strVal(lsecond(names));
1282312823
break;
1282412824
case 3:
12825-
r->catalogname = strVal(linitial(names));;
12825+
r->catalogname = strVal(linitial(names));
1282612826
r->schemaname = strVal(lsecond(names));
1282712827
r->relname = strVal(lthird(names));
1282812828
break;

src/backend/utils/adt/oracle_compat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ chr (PG_FUNCTION_ARGS)
955955
if (bytes == 2)
956956
{
957957
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
958-
wch[1] = 0x80 | (cvalue & 0x3F);;
958+
wch[1] = 0x80 | (cvalue & 0x3F);
959959
}
960960
else if (bytes == 3)
961961
{

0 commit comments

Comments
 (0)