diff options
author | EuAndreh <eu@euandre.org> | 2021-08-22 13:28:34 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-22 13:28:34 -0300 |
commit | 7eba689db1fbee19d5e11081f741e4bd9a19b69f (patch) | |
tree | 355701143f24cecec81f83dd475c39636731c0fd /src/tar.c | |
parent | tests/c-lint.sh: Use grep exit status instead of empty string output (diff) | |
download | gistatic-7eba689db1fbee19d5e11081f741e4bd9a19b69f.tar.gz gistatic-7eba689db1fbee19d5e11081f741e4bd9a19b69f.tar.xz |
src/: s/tarzify/tarball_write_from_directory/g
Diffstat (limited to 'src/tar.c')
-rw-r--r-- | src/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #include "config.h" #include "tar.h" -int tarzify(const char *const directory_path) { +int write_tarball_from_directory(const char *const directory_path) { (void)directory_path; return 0; } |