From 9fdbfe3875cbadeb9b99886791b0b9526a11a08a Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 22 Aug 2021 13:30:37 -0300 Subject: re 's/write_tarball_from_directory/tarball_write_from_directory/g' --- src/lib.c | 2 +- src/tar.c | 2 +- src/tar.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.c b/src/lib.c index f752a45..4912a96 100644 --- a/src/lib.c +++ b/src/lib.c @@ -2026,7 +2026,7 @@ static int repo_tarballs_refs_each( goto cleanup; } - if (write_tarball_from_directory(out)) { + if (tarball_write_from_directory(out)) { ret = -1; goto cleanup; } diff --git a/src/tar.c b/src/tar.c index e85090e..853bbc6 100644 --- a/src/tar.c +++ b/src/tar.c @@ -1,7 +1,7 @@ #include "config.h" #include "tar.h" -int write_tarball_from_directory(const char *const directory_path) { +int tarball_write_from_directory(const char *const directory_path) { (void)directory_path; return 0; } diff --git a/src/tar.h b/src/tar.h index 181b7bb..796ca9d 100644 --- a/src/tar.h +++ b/src/tar.h @@ -1,7 +1,7 @@ #ifndef GISTATIC_TAR_H #define GISTATIC_TAR_H -int write_tarball_from_directory(const char *const directory_path); +int tarball_write_from_directory(const char *const directory_path); #ifdef TEST void unit_tests_tar(void); -- cgit v1.2.3