mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
Add missing format argument to ecpg_log() call
This commit is contained in:
parent
86ab71d58d
commit
cf15fb5cab
@ -1675,7 +1675,7 @@ ecpg_execute(struct statement * stmt)
|
|||||||
if (PQresultStatus(results) == PGRES_COMMAND_OK)
|
if (PQresultStatus(results) == PGRES_COMMAND_OK)
|
||||||
ecpg_log("ecpg_execute on line %d: got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
|
ecpg_log("ecpg_execute on line %d: got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
|
||||||
else
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user