From 4e2823ffa5ff5e4e490f366a69d21267174b9a15 Mon Sep 17 00:00:00 2001 From: Jakukyo Friel Date: Thu, 11 Aug 2016 21:04:28 +0800 Subject: [PATCH] Change free space message to avoid ambiguity. `xbps-install` will report free space available on disk wording: > Free space on disk: ... 'free' above is supposed to be an adjective. But 'free' can also be a verb, thus the above message can be interpreted as free some space on disk. 'Free' is now changed to 'Available' to avoid ambiguity. --- bin/xbps-install/transaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/xbps-install/transaction.c b/bin/xbps-install/transaction.c index 2030d6ca..625a3a8f 100644 --- a/bin/xbps-install/transaction.c +++ b/bin/xbps-install/transaction.c @@ -211,7 +211,7 @@ show_transaction_sizes(struct transaction *trans, int cols) "%s\n", strerror(errno)); return -1; } - printf("Free space on disk: %6s\n", size); + printf("Space available on disk: %6s\n", size); } printf("\n");