From 851bb334c29a09e3ea706cc610c67667161165fa Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 21 Aug 2019 13:46:26 +0200 Subject: Consistently use old/new nomenclature in sqfsdiff Signed-off-by: David Oberhollenzer --- difftool/extract.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'difftool/extract.c') diff --git a/difftool/extract.c b/difftool/extract.c index 9fee46d..7d4fc1c 100644 --- a/difftool/extract.c +++ b/difftool/extract.c @@ -37,15 +37,15 @@ static int extract(data_reader_t *data, file_info_t *fi, return 0; } -int extract_files(file_info_t *a, file_info_t *b, const char *path) +int extract_files(file_info_t *old, file_info_t *new, const char *path) { - if (a != NULL && !a_is_dir) { - if (extract(sqfs_a.data, a, path, 'a')) + if (old != NULL && !old_is_dir) { + if (extract(sqfs_old.data, old, path, 'a')) return -1; } - if (b != NULL && !b_is_dir) { - if (extract(sqfs_b.data, b, path, 'b')) + if (new != NULL && !new_is_dir) { + if (extract(sqfs_new.data, new, path, 'b')) return -1; } return 0; -- cgit v1.2.3