📄 Mention unlimited option in documentation

This commit is contained in:
C-3PO 2018-10-08 23:09:46 +02:00
parent 6d85f98367
commit 8c8c5cf68a
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -13,6 +13,6 @@ void errorAndExit() {
fprintf(stderr, " -k, --keys: Optionally, the three decryption keys used to decrypt the file before inflation.\n");
fprintf(stderr, " -p, --previous: Optionally, the location of the previous version of this file, in case this disk only contains the xdelta3 differences and not an actual file.\n");
fprintf(stderr, " -t, --target: The path where the extracted file is saved to. If not specified, the file is outputted to stdout.\n");
fprintf(stderr, " -l, --limit: The maximum disk write speed in bytes per second, defaults to 30 MB/s if not specified.\n");
fprintf(stderr, " -l, --limit: The maximum disk write speed in bytes per second, or unlimited if set to 0. Defaults to 30 MB/s if not specified.\n");
exit(1);
}