From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60480) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UocZ0-0001hu-Ny for qemu-devel@nongnu.org; Mon, 17 Jun 2013 12:45:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UocYz-0000og-JP for qemu-devel@nongnu.org; Mon, 17 Jun 2013 12:45:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39241) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UocYz-0000oY-2Y for qemu-devel@nongnu.org; Mon, 17 Jun 2013 12:45:53 -0400 From: Luiz Capitulino Date: Mon, 17 Jun 2013 11:57:09 -0400 Message-Id: <1371484631-29510-8-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1371484631-29510-1-git-send-email-lcapitulino@redhat.com> References: <1371484631-29510-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 7/9] savevm: qmp_xen_save_devices_state(): use error_setg_file_open() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com Signed-off-by: Luiz Capitulino Acked-by: Kevin Wolf --- savevm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/savevm.c b/savevm.c index 2ce439f..ff5ece6 100644 --- a/savevm.c +++ b/savevm.c @@ -2410,7 +2410,7 @@ void qmp_xen_save_devices_state(const char *filename, Error **errp) f = qemu_fopen(filename, "wb"); if (!f) { - error_set(errp, QERR_OPEN_FILE_FAILED, filename); + error_setg_file_open(errp, errno, filename); goto the_end; } ret = qemu_save_device_state(f); -- 1.8.1.4