1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Remove spurious semicolons.

Petr Jelinek
This commit is contained in:
Heikki Linnakangas
2015-03-31 15:12:27 +03:00
parent fa1e5afa8a
commit 1d0db8de04
7 changed files with 9 additions and 9 deletions

View File

@@ -959,7 +959,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)
{