From 4284fe1ccf507fa5c7277228afdbe331fca04e3f Mon Sep 17 00:00:00 2001 From: C-3PO Date: Fri, 14 Sep 2018 02:01:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Rename=20prev=20argument=20to=20?= =?UTF-8?q?previous?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/errorAndExit.c | 2 +- src/parseArguments.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/errorAndExit.c b/src/errorAndExit.c index 2430ab2..f0493a3 100644 --- a/src/errorAndExit.c +++ b/src/errorAndExit.c @@ -11,6 +11,6 @@ void errorAndExit() { fprintf(stderr, " -o, --offset: The offset into the disk, given in bytes, where the local file header of the file we want to extract starts.\n"); fprintf(stderr, " -s, --size: The stored size of the file we want to extract (= the compressed size). After inflation, the file will likely be bigger than this.\n"); fprintf(stderr, " -k, --keys: Optionally, the three decryption keys used to decrypt the file before inflation.\n"); - fprintf(stderr, " -p, --prev: 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, " -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"); exit(1); } diff --git a/src/parseArguments.c b/src/parseArguments.c index 8864f5d..d6ea8cd 100644 --- a/src/parseArguments.c +++ b/src/parseArguments.c @@ -14,7 +14,7 @@ static struct option long_options[] = { {"offset", required_argument, 0, 'o'}, {"size", required_argument, 0, 's'}, {"keys", required_argument, 0, 'k'}, - {"prev", required_argument, 0, 'p'}, + {"previous", required_argument, 0, 'p'}, {NULL, 0, 0, 0}, };