diff options
author | Dan McGee <dan@archlinux.org> | 2009-05-11 21:43:36 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-05-11 21:43:36 -0500 |
commit | 20017354f7ccb58bf4f78691985a5d237f4dbc90 (patch) | |
tree | ee213f5368c7df020317a35604a7f74b2f5a8ff5 /src | |
parent | a783f3fbf1425fc9b8815a2ab658aa6530ce0c23 (diff) | |
download | pacman-20017354f7ccb58bf4f78691985a5d237f4dbc90.tar.xz |
Remove version information from -Qqo output
This was the only --quiet operation that showed version information; make it
consistent with the rest.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/query.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pacman/query.c b/src/pacman/query.c index 14fa357f..809a5f49 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -125,8 +125,7 @@ static int query_fileowner(alpm_list_t *targets) printf(_("%s is owned by %s %s\n"), filename, alpm_pkg_get_name(info), alpm_pkg_get_version(info)); } else { - printf("%s %s\n", alpm_pkg_get_name(info), - alpm_pkg_get_version(info)); + printf("%s\n", alpm_pkg_get_name(info)); } found = 1; } |