diff options
author | Bart Van Assche <bvanassche@acm.org> | 2020-01-05 13:37:48 -0800 |
---|---|---|
committer | Bart Van Assche <bvanassche@acm.org> | 2020-01-06 11:10:56 -0800 |
commit | f5bff36e93580e9cc5f94a2b361c5eccaea9f2f5 (patch) | |
tree | 147ceba8c53f646b3407437d92f8532b1b8dd05e | |
parent | 060514e7e0b23e5441bf88ce80f6ec13c8b2399f (diff) | |
download | fio-f5bff36e93580e9cc5f94a2b361c5eccaea9f2f5.tar.gz fio-f5bff36e93580e9cc5f94a2b361c5eccaea9f2f5.tar.bz2 |
Include "oslib/asprintf.h" where necessary
The header file "oslib/asprintf.h" must be included by every source file
that calls asprintf().
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
-rw-r--r-- | init.c | 1 | ||||
-rw-r--r-- | stat.c | 1 | ||||
-rw-r--r-- | verify.c | 1 | ||||
-rw-r--r-- | zbd.c | 2 |
4 files changed, 5 insertions, 0 deletions
@@ -32,6 +32,7 @@ #include "steadystate.h" #include "blktrace.h" +#include "oslib/asprintf.h" #include "oslib/getopt.h" #include "oslib/strcasestr.h" @@ -15,6 +15,7 @@ #include "helper_thread.h" #include "smalloc.h" #include "zbd.h" +#include "oslib/asprintf.h" #define LOG_MSEC_SLACK 1 @@ -14,6 +14,7 @@ #include "lib/rand.h" #include "lib/hweight.h" #include "lib/pattern.h" +#include "oslib/asprintf.h" #include "crc/md5.h" #include "crc/crc64.h" @@ -13,10 +13,12 @@ #include <sys/stat.h> #include <unistd.h> #include <linux/blkzoned.h> + #include "file.h" #include "fio.h" #include "lib/pow2.h" #include "log.h" +#include "oslib/asprintf.h" #include "smalloc.h" #include "verify.h" #include "zbd.h" |