From: Mark Wooding Date: Sun, 22 Jan 2012 13:02:47 +0000 (+0000) Subject: keyutil.c: Remove stray tabs and trailing space from the list format. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/8cd9f01dac408893755906282d79284c1ee7ddd6 keyutil.c: Remove stray tabs and trailing space from the list format. Not sure how the trailing spaces got there; the tabs are from an overzealous tabification run. --- diff --git a/keyutil.c b/keyutil.c index 79cf2c2..74f6409 100644 --- a/keyutil.c +++ b/keyutil.c @@ -1442,10 +1442,10 @@ static void showkey(key *k, listopts *o) if (!o->v) { if (!(o->f & f_newline)) { - printf("%8s %-20s %-20s %-10s %-10s\n", + printf("%8s %-20s %-20s %-10s %s\n", "Id", "Tag", "Type", "Expire", "Delete"); } - printf("%08lx %-20s %-20s %-10s %-10s\n", + printf("%08lx %-20s %-20s %-10s %s\n", (unsigned long)k->id, k->tag ? k->tag : "", k->type, ebuf, dbuf); o->f |= f_newline;