diff options
Diffstat (limited to 'block/vdi.c')
-rw-r--r-- | block/vdi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/block/vdi.c b/block/vdi.c index 57325d65c4..c4f1529db9 100644 --- a/block/vdi.c +++ b/block/vdi.c @@ -653,8 +653,9 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options) options++; } - fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, - 0644); + fd = qemu_open(filename, + O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, + 0644); if (fd < 0) { return -errno; } |