}
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);
}
}
if (r != bgchild)
{
- fprintf(stderr, _("%s: child %i died, expected %i\n"),
+ fprintf(stderr, _("%s: child %d died, expected %d\n"),
progname, r, (int) bgchild);
disconnect_and_exit(1);
}
}
if (WEXITSTATUS(status) != 0)
{
- fprintf(stderr, _("%s: child process exited with error %i\n"),
+ fprintf(stderr, _("%s: child process exited with error %d\n"),
progname, WEXITSTATUS(status));
disconnect_and_exit(1);
}
}
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);
}
}
if (PQnfields(res) != 3 || PQntuples(res) != 1)
{
- 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));
PQclear(res);
return false;
*/
if (r != STREAMING_KEEPALIVE_SIZE)
{
- fprintf(stderr, _("%s: keepalive message is incorrect size: %i\n"),
+ fprintf(stderr, _("%s: keepalive message is incorrect size: %d\n"),
progname, r);
return false;
}
}
if (r < STREAMING_HEADER_SIZE + 1)
{
- fprintf(stderr, _("%s: streaming header too small: %i\n"),
+ fprintf(stderr, _("%s: streaming header too small: %d\n"),
progname, r);
return false;
}