aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-08-29 01:32:00 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-08-29 01:32:00 +0000
commit6b44d796c7e10337537a1fa7591bb5e89d900152 (patch)
tree5522a321da29e07252f97e8c16461db7b13c826e /src
parent1a6fe830112d31bc4cd50cc11e49661d64598412 (diff)
downloadpostgresql-6b44d796c7e10337537a1fa7591bb5e89d900152.tar.gz
postgresql-6b44d796c7e10337537a1fa7591bb5e89d900152.zip
Fix misspelled error message.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/preproc/ecpg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c
index d106928d58b..761c35fb2d1 100644
--- a/src/interfaces/ecpg/preproc/ecpg.c
+++ b/src/interfaces/ecpg/preproc/ecpg.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.91 2004/11/09 15:57:55 petere Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.92 2005/08/29 01:32:00 tgl Exp $ */
/* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
/* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
@@ -434,7 +434,7 @@ main(int argc, char *const argv[])
* Does not really make sense to declare a cursor
* but not open it
*/
- snprintf(errortext, sizeof(errortext), "cursor `%s´ has been declared but ot opened\n", ptr->name);
+ snprintf(errortext, sizeof(errortext), "cursor \"%s\" has been declared but not opened\n", ptr->name);
mmerror(PARSE_ERROR, ET_WARNING, errortext);
}
ptr = ptr->next;