From: Magnus Hagander Date: Wed, 21 Jan 2009 12:45:06 +0000 (+0000) Subject: Remove stray ' character at end of line. X-Git-Tag: recoveryinfrav9~7 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=980f9aaaec0c296edb45ef5fa2a06447a8096411;p=users%2Fsimon%2Fpostgres.git Remove stray ' character at end of line. For some reason it broke OpenBSD compile even when it's inside a #ifdef WIN32 block..... --- diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index 199d83553a..adb3725f87 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -637,7 +637,7 @@ char *IsoLocaleName(const char *winlocname) if (!GetLocaleInfoA(lcid, LOCALE_SISO639LANGNAME, isolang, sizeof(isolang))) return NULL; - if (!GetLocaleInfoA(lcid, LOCALE_SISO3166CTRYNAME, isocrty, sizeof(isocrty)))' + if (!GetLocaleInfoA(lcid, LOCALE_SISO3166CTRYNAME, isocrty, sizeof(isocrty))) return NULL; snprintf(iso_lc_messages, sizeof(iso_lc_messages) - 1, "%s_%s", isolang, isocrty); return iso_lc_messages;