mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Add missing format argument to ecpg_log() call
This commit is contained in:
parent
6e7a3c364b
commit
ba24de13f6
@ -1676,7 +1676,7 @@ ecpg_execute(struct statement * stmt)
|
||||
if (PQresultStatus(results) == PGRES_COMMAND_OK)
|
||||
ecpg_log("ecpg_execute on line %d: got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
|
||||
else
|
||||
ecpg_log("ecpg_execute on line %d: got error after PGRES_COPY_OUT: %s", PQresultErrorMessage(results));
|
||||
ecpg_log("ecpg_execute on line %d: got error after PGRES_COPY_OUT: %s", stmt->lineno, PQresultErrorMessage(results));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user