diff options
Diffstat (limited to 'block/vvfat.c')
-rw-r--r-- | block/vvfat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/vvfat.c b/block/vvfat.c index 3cda19f2f3..d895582030 100644 --- a/block/vvfat.c +++ b/block/vvfat.c @@ -2930,7 +2930,7 @@ static int enable_write_target(BDRVVVFATState *s, Error **errp) set_option_parameter_int(options, BLOCK_OPT_SIZE, s->sector_count * 512); set_option_parameter(options, BLOCK_OPT_BACKING_FILE, "fat:"); - ret = bdrv_create(bdrv_qcow, s->qcow_filename, options, errp); + ret = bdrv_create(bdrv_qcow, s->qcow_filename, options, NULL, errp); free_option_parameters(options); if (ret < 0) { goto err; |