index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Fyfe <andrew@neptune-one.net> | 2007-07-12 20:12:08 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-12 15:22:16 -0400 |
commit | fd3a1a92c8ffe5230e40a027838442752a843da9 (patch) | |
tree | 99f1314a400a3ea8d6cd4c112ca0f6cf3746d94e /src | |
parent | 20f73d6299c08fa79c2c8edd3d1955e208e701cb (diff) |
-rw-r--r-- | src/pacman/query.c | 6 |
diff --git a/src/pacman/query.c b/src/pacman/query.c index cfd53df7..f6c6b5d0 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -251,7 +251,7 @@ static int query_test(void) int ret = 0; alpm_list_t *testlist; - printf(_("Checking database for consistency...")); + printf(_("Checking database for consistency... ")); testlist = alpm_db_test(db_local); if(testlist == NULL) { printf(_("check complete.\n")); @@ -271,7 +271,7 @@ static int query_test(void) static int query_upgrades(void) { - printf(_("Checking for package upgrades...")); + printf(_("Checking for package upgrades... \n")); alpm_list_t *syncpkgs; if((syncpkgs = alpm_db_get_upgrades()) != NULL) { @@ -279,7 +279,7 @@ static int query_upgrades(void) return(0); } - printf(_("no upgrades found")); + printf(_("no upgrades found.\n")); return(1); } |