8000 Remove stray ' character at end of line. · postgrespro/postgres_cluster@95aaf25 · GitHub
[go: up one dir, main page]

Skip to content

Commit 95aaf25

Browse files
committed
Remove stray ' character at end of line.
For some reason it broke OpenBSD compile even when it's inside a #ifdef WIN32 block.....
1 parent 410a372 commit 95aaf25
< 8000 div class="prc-PageLayout-HorizontalDivider-CYLp5 prc-PageLayout-PaneHorizontalDivider-4exOb" data-variant="none" data-position="start" style="--spacing-divider:var(--spacing-none);--spacing:var(--spacing-none)">

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/adt/pg_locale.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 2002-2009, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.46 2009/01/21 10:30:02 mha Exp $
7+
* $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.47 2009/01/21 12:45:06 mha Exp $
88
*
99
*-----------------------------------------------------------------------
1010
*/
@@ -637,7 +637,7 @@ char *IsoLocaleName(const char *winlocname)
637637

638638
if (!GetLocaleInfoA(lcid, LOCALE_SISO639LANGNAME, isolang, sizeof(isolang)))
639639
return NULL;
640-
if (!GetLocaleInfoA(lcid, LOCALE_SISO3166CTRYNAME, isocrty, sizeof(isocrty)))'
640+
if (!GetLocaleInfoA(lcid, LOCALE_SISO3166CTRYNAME, isocrty, sizeof(isocrty)))
641641
return NULL;
642642
snprintf(iso_lc_messages, sizeof(iso_lc_messages) - 1, "%s_%s", isolang, isocrty);
643643
return iso_lc_messages;

0 commit comments

Comments
 (0)
0