diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-18 23:50:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-18 23:50:52 -0400 |
commit | 262a399beb9c525633d5ac96d15754faeb65a28c (patch) | |
tree | ffb98ee034d8f3a08366041ea2bd596c0c15986f /include | |
parent | e0af560cabe6343e38061884c8361daddb5c7545 (diff) | |
download | spmc-262a399beb9c525633d5ac96d15754faeb65a28c.tar.gz |
spm_mkdtemp requires a base directory:
* test_spm_mkdtemp revealed a difference in how variables are stored (Linux vs. MacOS)
Diffstat (limited to 'include')
-rw-r--r-- | include/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fs.h b/include/fs.h index 796c350..c41b649 100644 --- a/include/fs.h +++ b/include/fs.h @@ -39,7 +39,7 @@ char *basename(char *path); int rsync(const char *_args, const char *_source, const char *_destination); char *human_readable_size(uint64_t n); char *expandpath(const char *_path); -char *spm_mkdtemp(const char *name, const char *extended_path); +char *spm_mkdtemp(const char *base, const char *name, const char *extended_path); int touch(const char *path); |