From 618da851ec8059460be8e0670bc835d3c2003708 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Fri, 7 Jun 2013 14:35:06 -0400 Subject: cpus: use error_setg_file_open() Signed-off-by: Luiz Capitulino Acked-by: Kevin Wolf --- cpus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpus.c') diff --git a/cpus.c b/cpus.c index c232265cd2..c8bc8ad8b5 100644 --- a/cpus.c +++ b/cpus.c @@ -1278,7 +1278,7 @@ void qmp_memsave(int64_t addr, int64_t size, const char *filename, f = fopen(filename, "wb"); if (!f) { - error_set(errp, QERR_OPEN_FILE_FAILED, filename); + error_setg_file_open(errp, errno, filename); return; } @@ -1308,7 +1308,7 @@ void qmp_pmemsave(int64_t addr, int64_t size, const char *filename, f = fopen(filename, "wb"); if (!f) { - error_set(errp, QERR_OPEN_FILE_FAILED, filename); + error_setg_file_open(errp, errno, filename); return; } -- cgit v1.2.1