mirror of
https://github.com/xemu-project/xemu.git
synced 2025-01-31 17:23:53 +00:00
block.c: fix warning with _FORTIFY_SOURCE
CC block.o cc1: warnings being treated as errors block.c: In function 'bdrv_open2': block.c:400: error: ignoring return value of 'realpath', declared with attribute warn_unused_result Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
00ccf932a0
commit
114cdfa908
4
block.c
4
block.c
@ -396,8 +396,8 @@ int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
|
|||||||
if (is_protocol)
|
if (is_protocol)
|
||||||
snprintf(backing_filename, sizeof(backing_filename),
|
snprintf(backing_filename, sizeof(backing_filename),
|
||||||
"%s", filename);
|
"%s", filename);
|
||||||
else
|
else if (!realpath(filename, backing_filename))
|
||||||
realpath(filename, backing_filename);
|
return -errno;
|
||||||
|
|
||||||
bdrv_qcow2 = bdrv_find_format("qcow2");
|
bdrv_qcow2 = bdrv_find_format("qcow2");
|
||||||
options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
|
options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user