diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-21 13:46:26 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-21 13:51:51 +0200 |
commit | 851bb334c29a09e3ea706cc610c67667161165fa (patch) | |
tree | 20bd3e88adaf417a1ad97436c4e711c2952f1e48 /difftool/difftool.h | |
parent | e27ddbbbc74e931c1e53ec5fe1d559a1ba106032 (diff) |
Consistently use old/new nomenclature in sqfsdiff
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'difftool/difftool.h')
-rw-r--r-- | difftool/difftool.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/difftool/difftool.h b/difftool/difftool.h index 56f727a..bf63faf 100644 --- a/difftool/difftool.h +++ b/difftool/difftool.h @@ -23,13 +23,13 @@ #define MAX_WINDOW_SIZE (1024 * 1024 * 4) -extern const char *first_path; -extern const char *second_path; +extern const char *old_path; +extern const char *new_path; extern int compare_flags; -extern sqfs_reader_t sqfs_a; -extern sqfs_reader_t sqfs_b; -extern bool a_is_dir; -extern bool b_is_dir; +extern sqfs_reader_t sqfs_old; +extern sqfs_reader_t sqfs_new; +extern bool old_is_dir; +extern bool new_is_dir; enum { COMPARE_NO_PERM = 0x01, |