Skip to content

Commit 71b3689

Browse files
committed
Remove spurious semicolons.
Petr Jelinek
1 parent 9485663 commit 71b3689

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
@@ -13234,7 +13234,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
1323413234
r->relname = strVal(lsecond(names));
1323513235
break;
1323613236
case 3:
13237-
r->catalogname = strVal(linitial(names));;
13237+
r->catalogname = strVal(linitial(names));
1323813238
r->schemaname = strVal(lsecond(names));
1323913239
r->relname = strVal(lthird(names));
1324013240
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)