Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb9a98b
)
Add missing format argument to ecpg_log() call
author
Peter Eisentraut
<peter_e@gmx.net>
Thu, 8 Sep 2011 19:09:08 +0000
(22:09 +0300)
committer
Peter Eisentraut
<peter_e@gmx.net>
Thu, 8 Sep 2011 19:15:53 +0000
(22:15 +0300)
src/interfaces/ecpg/ecpglib/execute.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/ecpg/ecpglib/execute.c
b/src/interfaces/ecpg/ecpglib/execute.c
index 1e3d4182bb93b5f66c67a7c0eb8a52a3c6398c77..446605ef6a381b6d47cee516b86ef303ae9f7103 100644
(file)
--- a/
src/interfaces/ecpg/ecpglib/execute.c
+++ b/
src/interfaces/ecpg/ecpglib/execute.c
@@
-1357,7
+1357,7
@@
ECPGexecute(struct statement * stmt)
if (PQresultStatus(results) == PGRES_COMMAND_OK)
ECPGlog("ECPGexecute line %d: Got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
else
- ECPGlog("ECPGexecute line %d: Got error after PGRES_COPY_OUT: %s", PQresultErrorMessage(results));
+ ECPGlog("ECPGexecute line %d: Got error after PGRES_COPY_OUT: %s",
stmt->lineno,
PQresultErrorMessage(results));
}
break;
}