From d8eade3784b1d767a80d41aea628e52eb7596694 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 9 May 2001 17:57:42 +0000 Subject: [PATCH] Right-align \du user-id. --- src/bin/psql/describe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index fcc0b40753..ab72e8462f 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.30 2001/05/09 17:49:42 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.31 2001/05/09 17:57:42 momjian Exp $ */ #include "postgres_fe.h" #include "describe.h" @@ -978,7 +978,7 @@ describeUsers (const char *name) printTable(title, headers, (const char **) cells, NULL, - "lll", &myopt, pset.queryFout); + "lrl", &myopt, pset.queryFout); /* clean up */ for (i = 0; i < PQntuples(res); i++)