|
4 | 4 | * |
5 | 5 | * Portions Copyright (c) 2002-2009, PostgreSQL Global Development Group |
6 | 6 | * |
7 | | - * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.46 2009/01/2110:30:02 mha Exp $ |
| 7 | + * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.47 2009/01/2112:45:06 mha Exp $ |
8 | 8 | * |
9 | 9 | *----------------------------------------------------------------------- |
10 | 10 | */ |
@@ -637,7 +637,7 @@ char *IsoLocaleName(const char *winlocname) |
637 | 637 |
|
638 | 638 | if (!GetLocaleInfoA(lcid,LOCALE_SISO639LANGNAME,isolang,sizeof(isolang))) |
639 | 639 | returnNULL; |
640 | | -if (!GetLocaleInfoA(lcid,LOCALE_SISO3166CTRYNAME,isocrty,sizeof(isocrty)))' |
| 640 | +if (!GetLocaleInfoA(lcid,LOCALE_SISO3166CTRYNAME,isocrty,sizeof(isocrty))) |
641 | 641 | returnNULL; |
642 | 642 | snprintf(iso_lc_messages,sizeof(iso_lc_messages)-1,"%s_%s",isolang,isocrty); |
643 | 643 | returniso_lc_messages; |
|