summaryrefslogtreecommitdiffstats
path: root/block-cloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'block-cloop.c')
-rw-r--r--block-cloop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/block-cloop.c b/block-cloop.c
index c617e1b..f51c32d 100644
--- a/block-cloop.c
+++ b/block-cloop.c
@@ -50,14 +50,14 @@ static int cloop_probe(const uint8_t *buf, int buf_size, const char *filename)
return 0;
}
-static int cloop_open(BlockDriverState *bs, const char *filename)
+static int cloop_open(BlockDriverState *bs, const char *filename, int flags)
{
BDRVCloopState *s = bs->opaque;
uint32_t offsets_size,max_compressed_block_size=1,i;
- s->fd = open(filename, O_RDONLY | O_BINARY | O_LARGEFILE);
+ s->fd = open(filename, O_RDONLY | O_BINARY);
if (s->fd < 0)
- return -1;
+ return -errno;
bs->read_only = 1;
/* read header */
OpenPOWER on IntegriCloud