diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/fstree.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/fstree.h b/include/fstree.h index b355f06..a63c593 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -98,15 +98,13 @@ struct fstree_t { Initializing means copying over the default values and creating a root node. On error, an error message is written to stderr. - `block_size` is the the data block size for regular files. - The string `defaults` can specify default attributes (mode, uid, gid, mtime) as a comma seperated list of key value paris (<key>=<value>[,...]). The string is passed to getsubopt and will be altered. Returns 0 on success. */ -int fstree_init(fstree_t *fs, size_t block_size, char *defaults); +int fstree_init(fstree_t *fs, char *defaults); void fstree_cleanup(fstree_t *fs); |