summaryrefslogtreecommitdiff
path: root/src/bin/pg_basebackup/pg_receivexlog.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-03-30 20:40:46 +0300
committerPeter Eisentraut <peter_e@gmx.net>2012-03-30 20:40:46 +0300
commit1d1361b6b77242f519c3cbb10fede4478ba6444f (patch)
treeefef9d4dca53e82ac48ff60cc81b0d57d066f824 /src/bin/pg_basebackup/pg_receivexlog.c
parent6ca365bff28e52dc14500df84e7b3230d4c292eb (diff)
Replace printf format %i by %d
see also ce8d7bb6440710058503d213b2aafcdf56a5b481
Diffstat (limited to 'src/bin/pg_basebackup/pg_receivexlog.c')
-rw-r--r--src/bin/pg_basebackup/pg_receivexlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c
index fe9e39bb214..2134c8729cc 100644
--- a/src/bin/pg_basebackup/pg_receivexlog.c
+++ b/src/bin/pg_basebackup/pg_receivexlog.c
@@ -237,7 +237,7 @@ StreamLog(void)
}
if (PQntuples(res) != 1 || PQnfields(res) != 3)
{
- fprintf(stderr, _("%s: could not identify system, got %i rows and %i fields\n"),
+ fprintf(stderr, _("%s: could not identify system, got %d rows and %d fields\n"),
progname, PQntuples(res), PQnfields(res));
disconnect_and_exit(1);
}