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:
parent
03d29f64b8
commit
4e2823ffa5
@ -211,7 +211,7 @@ show_transaction_sizes(struct transaction *trans, int cols)
|
|||||||
"%s\n", strerror(errno));
|
"%s\n", strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
printf("Free space on disk: %6s\n", size);
|
printf("Space available on disk: %6s\n", size);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user