Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48d80b4 commit 8465ff5Copy full SHA for 8465ff5
src/test/modules/libpq_pipeline/libpq_pipeline.c
@@ -929,7 +929,7 @@ test_prepared(PGconn *conn)
929
if (PQresultStatus(res) != PGRES_COMMAND_OK)
930
pg_fatal("expected COMMAND_OK, got %s", PQresStatus(PQresultStatus(res)));
931
if (PQnfields(res) != lengthof(expected_oids))
932
- pg_fatal("expected %zd columns, got %d",
+ pg_fatal("expected %zu columns, got %d",
933
lengthof(expected_oids), PQnfields(res));
934
for (int i = 0; i < PQnfields(res); i++)
935
{
0 commit comments