Fix misspelled error message.
authorTom Lane <[email protected]>
Mon, 29 Aug 2005 01:32:00 +0000 (01:32 +0000)
committerTom Lane <[email protected]>
Mon, 29 Aug 2005 01:32:00 +0000 (01:32 +0000)
src/interfaces/ecpg/preproc/ecpg.c

index 85435c3317ef8594c13a39fb6bf0db8cf03b821f..3159e0429c96fe1108bc7c9291626dee67078807 100644 (file)
@@ -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;