[pacman-dev] [PATCH] Fix inconsistent status messages
Stefan Tatschner
rumpelsepp at sevenbyte.org
Sat Jan 30 13:04:14 UTC 2016
This patch fixes an inconsistency in the status messages.
:: Proceed with installation? [Y/n]
:: Retrieving packages ... <--- Space before "...".
blas-3.6.0-4-x86_64
cblas-3.6.0-4-x86_64
lapack-3.6.0-4-x86_64
(3/3) checking keys in keyring
(3/3) checking package integrity
(3/3) loading package files
(3/3) checking for file conflicts
(3/3) checking available disk space
:: Processing package changes... <--- No space before "..."
(1/3) upgrading blas
(2/3) upgrading cblas
(3/3) upgrading lapack
---
src/pacman/callback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index cb3db10..1e1a4cd 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -288,7 +288,7 @@ void cb_event(alpm_event_t *event)
fputs(event->scriptlet_info.line, stdout);
break;
case ALPM_EVENT_RETRIEVE_START:
- colon_printf(_("Retrieving packages ...\n"));
+ colon_printf(_("Retrieving packages...\n"));
break;
case ALPM_EVENT_DISKSPACE_START:
if(config->noprogressbar) {
--
2.7.0
More information about the pacman-dev
mailing list