Commit 32860656 authored by Peter Eisentraut's avatar Peter Eisentraut

Don't use INT64_FORMAT inside message strings

Use %lld and cast to long long int instead.
parent f0ec598b
......@@ -526,8 +526,8 @@ process_queued_fetch_requests(libpq_source *src)
}
else
{
pg_log_debug("received chunk for file \"%s\", offset " INT64_FORMAT ", size %d",
filename, chunkoff, chunksize);
pg_log_debug("received chunk for file \"%s\", offset %lld, size %d",
filename, (long long int) chunkoff, chunksize);
if (strcmp(filename, rq->path) != 0)
{
......@@ -535,8 +535,8 @@ process_queued_fetch_requests(libpq_source *src)
filename, rq->path);
}
if (chunkoff != rq->offset)
pg_fatal("received data at offset " INT64_FORMAT " of file \"%s\", when requested for offset " INT64_FORMAT,
chunkoff, rq->path, (int64) rq->offset);
pg_fatal("received data at offset %lld of file \"%s\", when requested for offset %lld",
(long long int) chunkoff, rq->path, (long long int) rq->offset);
/*
* We should not receive more data than we requested, or
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment