diff options
author | Jens Axboe <axboe@fb.com> | 2016-08-26 08:34:41 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-08-26 08:34:41 -0600 |
commit | 747b310559e6611dfaa5ff13cf43538043f91323 (patch) | |
tree | f758c5faeabbe0b77ec871fb840a1c16a9e2e510 /file.h | |
parent | 04d6530f6ecd50520e99732b0b6bb90f71ff131a (diff) | |
download | fio-747b310559e6611dfaa5ff13cf43538043f91323.tar.gz fio-747b310559e6611dfaa5ff13cf43538043f91323.tar.bz2 |
file: fio_files_done() can return bool
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ extern int get_fileno(struct thread_data *, const char *); extern void free_release_files(struct thread_data *); extern void filesetup_mem_free(void); extern void fio_file_reset(struct thread_data *, struct fio_file *); -extern int fio_files_done(struct thread_data *); +extern bool fio_files_done(struct thread_data *); extern bool exists_and_not_regfile(const char *); #endif |