Skip to content

Commit 6bd7e30

Browse files
committed
Remove spurious semicolons.
Petr Jelinek
1 parent bf22a8e commit 6bd7e30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/oracle_compat.c

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

0 commit comments

Comments
 (0)