Fix typo in an error message

This commit is contained in:
Tatsuo Ishii 2003-01-11 06:55:11 +00:00
parent 3cd7edfee0
commit 38535f8e32
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/*
* conversion functions between pg_wchar and multibyte streams.
* Tatsuo Ishii
* $Id: wchar.c,v 1.30 2002/09/04 20:31:31 momjian Exp $
* $Id: wchar.c,v 1.31 2003/01/11 06:55:11 ishii Exp $
*
* WIN1250 client encoding updated by Pavel Behal
*
@ -633,7 +633,7 @@ pg_verifymbstr(const unsigned char *mbstr, int len)
if (GetDatabaseEncoding() == PG_UTF8 &&
(*mbstr & 0xf8) == 0xf0)
{
snprintf(buf, sizeof(buf), "Unicode >= 0x10000 is not supoorted");
snprintf(buf, sizeof(buf), "Unicode >= 0x10000 is not supported");
return (buf);
}