mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Remove spurious semicolons.
Petr Jelinek
This commit is contained in:
parent
bf22a8e585
commit
6bd7e30465
1 changed files with 1 additions and 1 deletions
|
|
@ -952,7 +952,7 @@ chr (PG_FUNCTION_ARGS)
|
|||
if (bytes == 2)
|
||||
{
|
||||
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
|
||||
wch[1] = 0x80 | (cvalue & 0x3F);;
|
||||
wch[1] = 0x80 | (cvalue & 0x3F);
|
||||
}
|
||||
else if (bytes == 3)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue