diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-06-03 00:10:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 00:10:25 -0400 |
commit | d12170bb0cb936f1e48a677dbd96822db55bbda3 (patch) | |
tree | 1bd69fbd6460dff6f50e7a13e54693a534590104 /tests/framework.h | |
parent | 6c140c35ae7bf2b5e6633f63e2bc2fba14fc22bc (diff) | |
download | spmc-d12170bb0cb936f1e48a677dbd96822db55bbda3.tar.gz |
Refactor fstree (#39)
* Refactor fstree, fstree_free, FSTree type
* Add FSRec structure
* Refactor fstree usage
* Decrease starting size of FSTree structure
* Check if ManifestPackage is NULL, not if the requirements array if NULL
* Use num_requirements instead of '!= NULL'
* Add fstree test
Diffstat (limited to 'tests/framework.h')
-rw-r--r-- | tests/framework.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/framework.h b/tests/framework.h index c9170b6..ea899ce 100644 --- a/tests/framework.h +++ b/tests/framework.h @@ -104,7 +104,7 @@ char *mock_size(size_t size, const char *fill_byte) { } if ((mkstemp(filename)) < 0) { - perror("mktemp failed to create temporary file"); + perror("mkstemp failed to create temporary file"); exit(errno); } |