# HG changeset patch # User Matti Hamalainen # Date 1411601432 -10800 # Node ID 0d1bde382e5ce0d92a1a0ddac6dd53206acc32af # Parent 5b1297759105d29e49758c1d1a92b9bdf96acb04 Oops, missed ' : ' from normal output. diff -r 5b1297759105 -r 0d1bde382e5c sidinfo.c --- a/sidinfo.c Thu Sep 25 02:27:01 2014 +0300 +++ b/sidinfo.c Thu Sep 25 02:30:32 2014 +0300 @@ -418,7 +418,7 @@ static void siPrintLinePrefix(FILE *outFile, const BOOL parsable, const char *name) { if (!optNoNamePrefix) - fprintf(outFile, parsable ? "%s=" : "%-20s", name); + fprintf(outFile, parsable ? "%s=" : "%-20s : ", name); }