The following changes since commit f75248a9d9554b668484b089713e7c2b0a154ad6: Fio 3.19 (2020-03-12 11:12:50 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to dcdfc515ab7a245f9086c901a675a246e3b4db4e: Merge branch 'patch-1' of https://github.com/neheb/fio (2020-03-15 18:59:19 -0600) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'patch-1' of https://github.com/neheb/fio Rosen Penev (1): configure: fix vasprintf check under musl configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/configure b/configure index 5de86ca2..d17929f1 100755 --- a/configure +++ b/configure @@ -892,7 +892,8 @@ cat > $TMPC << EOF int main(int argc, char **argv) { - return vasprintf(NULL, "%s", NULL) == 0; + va_list ap; + return vasprintf(NULL, "%s", ap) == 0; } EOF if compile_prog "" "" "have_vasprintf"; then