From 20017354f7ccb58bf4f78691985a5d237f4dbc90 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 11 May 2009 21:43:36 -0500 Subject: 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 --- src/pacman/query.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3-24-g4f1b