]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Remove spurious semicolons.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 31 Mar 2015 12:12:27 +0000 (15:12 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 31 Mar 2015 12:21:06 +0000 (15:21 +0300)
Petr Jelinek

src/backend/utils/adt/oracle_compat.c

index 4d1ad1bb37b093452b3160b49d9a4f4bc85a1a0f..58e6679c8742d0f1409ea34ba7300e913fbad813 100644 (file)
@@ -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)
                {