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.
This commit is contained in:
Jakukyo Friel 2016-08-11 21:04:28 +08:00
parent 03d29f64b8
commit 4e2823ffa5
No known key found for this signature in database
GPG Key ID: 55F6EEC2EA3F0A87

View File

@ -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");