Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6b44d79

Browse files
committed
Fix misspelled error message.
1 parent 1a6fe83 commit 6b44d79

File tree

1 file changed

+2
-2
lines changed
  • src/interfaces/ecpg/preproc

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/ecpg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.91 2004/11/09 15:57:55 petere Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.c,v 1.92 2005/08/29 01:32:00 tgl Exp $ */
22

33
/* New main for ecpg, the PostgreSQL embedded SQL precompiler. */
44
/* (C) Michael Meskes <meskes@postgresql.org> Feb 5th, 1998 */
@@ -434,7 +434,7 @@ main(int argc, char *const argv[])
434434
* Does not really make sense to declare a cursor
435435
* but not open it
436436
*/
437-
snprintf(errortext, sizeof(errortext), "cursor `%s´ has been declared but ot opened\n", ptr->name);
437+
snprintf(errortext, sizeof(errortext), "cursor \"%s\" has been declared but not opened\n", ptr->name);
438438
mmerror(PARSE_ERROR, ET_WARNING, errortext);
439439
}
440440
ptr = ptr->next;

0 commit comments

Comments
 (0)