From: Bruce Momjian Date: Mon, 6 Feb 2006 02:23:17 +0000 (+0000) Subject: Fix PQprint HTML tag, "centre" -> "center". X-Git-Tag: REL8_1_3~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=763b9c1901cfda0db9e94cf142ba351c197ec749;p=postgresql Fix PQprint HTML tag, "centre" -> "center". --- diff --git a/src/interfaces/libpq/fe-print.c b/src/interfaces/libpq/fe-print.c index f49859020b..f546867f08 100644 --- a/src/interfaces/libpq/fe-print.c +++ b/src/interfaces/libpq/fe-print.c @@ -10,7 +10,7 @@ * didn't really belong there. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64 2005/10/15 02:49:48 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64.2.1 2006/02/06 02:23:17 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -242,12 +242,12 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po) if (po->expanded && po->html3) { if (po->caption) - fprintf(fout, "

%s

\n", po->caption); + fprintf(fout, "

%s

\n", po->caption); else fprintf(fout, - "

" + "

" "Query retrieved %d rows * %d fields" - "

\n", + "

\n", nTups, nFields); } for (i = 0; i < nTups; i++)