From d6e9098e10e82feeddb824d7c3d0cf61aff96c29 Mon Sep 17 00:00:00 2001 From: Kevin Wolf Date: Wed, 31 Mar 2010 14:40:27 +0200 Subject: Replace calls of old bdrv_open What is known today as bdrv_open2 becomes the new bdrv_open. All remaining callers of the old function are converted to the new one. In some places they even know the right format, so they should have used bdrv_open2 from the beginning. Signed-off-by: Kevin Wolf --- block/vmdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'block/vmdk.c') diff --git a/block/vmdk.c b/block/vmdk.c index 007fca4c70..6fdea1d305 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@ -390,7 +390,7 @@ static int vmdk_parent_open(BlockDriverState *bs, const char * filename) return -1; } parent_open = 1; - if (bdrv_open(bs->backing_hd, parent_img_name, 0) < 0) + if (bdrv_open(bs->backing_hd, parent_img_name, 0, NULL) < 0) goto failure; parent_open = 0; } -- cgit v1.2.3