projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3917339
)
Fix misspelled error message.
author
Tom Lane
<
[email protected]
>
Mon, 29 Aug 2005 01:32:00 +0000
(
01:32
+0000)
committer
Tom Lane
<
[email protected]
>
Mon, 29 Aug 2005 01:32:00 +0000
(
01:32
+0000)
src/interfaces/ecpg/preproc/ecpg.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/ecpg/preproc/ecpg.c
b/src/interfaces/ecpg/preproc/ecpg.c
index 85435c3317ef8594c13a39fb6bf0db8cf03b821f..3159e0429c96fe1108bc7c9291626dee67078807 100644
(file)
--- a/
src/interfaces/ecpg/preproc/ecpg.c
+++ b/
src/interfaces/ecpg/preproc/ecpg.c
@@
-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 n
ot opened\n", ptr->name);
mmerror(PARSE_ERROR, ET_WARNING, errortext);
}
ptr = ptr->next;