Skip to content

Commit aea599c

Browse files
committed
Fix incorrect format placeholder
1 parent 2075ba9 commit aea599c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/modules/libpq_pipeline/libpq_pipeline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ test_prepared(PGconn *conn)
929929
if (PQresultStatus(res) != PGRES_COMMAND_OK)
930930
pg_fatal("expected COMMAND_OK, got %s", PQresStatus(PQresultStatus(res)));
931931
if (PQnfields(res) != lengthof(expected_oids))
932-
pg_fatal("expected %zd columns, got %d",
932+
pg_fatal("expected %zu columns, got %d",
933933
lengthof(expected_oids), PQnfields(res));
934934
for (int i = 0; i < PQnfields(res); i++)
935935
{

0 commit comments

Comments
 (0)