* Swap the system and version comparion columns.

This commit is contained in:
Eelco Dolstra 2005-10-06 15:51:59 +00:00
parent 62412c5874
commit dfbf520ec2
1 changed files with 2 additions and 2 deletions

View File

@ -800,8 +800,6 @@ static void opQuery(Globals & globals,
if (printName) columns.push_back(i->name);
if (printSystem) columns.push_back(i->system);
if (compareVersions) {
/* Compare this element against the versions of the same
named packages in either the set of available elements,
@ -822,6 +820,8 @@ static void opQuery(Globals & globals,
columns.push_back(column);
}
if (printSystem) columns.push_back(i->system);
if (printDrvPath) columns.push_back(
i->queryDrvPath(globals.state) == ""
? "-" : i->queryDrvPath(globals.state));