View Single Post

   
  #1 (permalink)  
Old 04-18-2008, 10:10 AM
=?UTF-8?Q?Filip_Rembia=C5=82kowski?=
 
Posts: n/a
Default typo in contrib/hstore/hstore_io.c

diff -u pgsql/contrib/hstore/hstore_io.c pg/contrib/hstore/hstore_io.c
--- pgsql/contrib/hstore/hstore_io.c 2006-10-04 02:29:44.000000000 +0200
+++ pg/contrib/hstore/hstore_io.c 2006-12-05 16:30:36.000000000 +0100
@@ -195,7 +195,7 @@
}
else if (*(state->ptr) == '\0')
{
- elog(ERROR, "Unexpectd end of string");
+ elog(ERROR, "Unexpected end of string");
}
else if (!isspace((unsigned char) *(state->ptr)))
{
@@ -210,7 +210,7 @@
}
else if (*(state->ptr) == '\0')
{
- elog(ERROR, "Unexpectd end of string");
+ elog(ERROR, "Unexpected end of string");
}
else
{


--
Filip RembiaƂkowski

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Reply With Quote