diff options
author | Max Reitz <mreitz@redhat.com> | 2013-09-05 14:26:05 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-09-12 10:12:48 +0200 |
commit | d5124c00d80b4d948509f2c7f6b54228d9981f75 (patch) | |
tree | 522995c8e7db4cc07ff1b4265ffeb78105f0f2b7 /block.c | |
parent | 015a1036a74ad29bb6916754911ce25587ff4db3 (diff) |
bdrv: Use "Error" for creating images
Add an Error ** parameter to BlockDriver.bdrv_create to allow more
specific error messages.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -401,7 +401,7 @@ static void coroutine_fn bdrv_create_co_entry(void *opaque) CreateCo *cco = opaque; assert(cco->drv); - cco->ret = cco->drv->bdrv_create(cco->filename, cco->options); + cco->ret = cco->drv->bdrv_create(cco->filename, cco->options, NULL); } int bdrv_create(BlockDriver *drv, const char* filename, |