From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPn4S-0001wj-0C for qemu-devel@nongnu.org; Tue, 18 Mar 2014 02:00:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WPn4J-0000W5-Sb for qemu-devel@nongnu.org; Tue, 18 Mar 2014 02:00:15 -0400 Received: from mail-la0-f42.google.com ([209.85.215.42]:34446) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPn4J-0000VW-N3 for qemu-devel@nongnu.org; Tue, 18 Mar 2014 02:00:07 -0400 Received: by mail-la0-f42.google.com with SMTP id ec20so4471463lab.1 for ; Mon, 17 Mar 2014 23:00:06 -0700 (PDT) From: Maria Kustova Date: Tue, 18 Mar 2014 09:59:18 +0400 Message-Id: <1395122359-28890-3-git-send-email-maria.k@catit.be> In-Reply-To: <1395122359-28890-1-git-send-email-maria.k@catit.be> References: <1395122359-28890-1-git-send-email-maria.k@catit.be> Subject: [Qemu-devel] [PATCH v2 2/3] block: Replaced old error handling with error reporting API. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, qemu-trivial@nongnu.org, Maria Kustova , stefanha@redhat.com Signed-off-by: Maria Kustova --- Changes v1 -> v2: * Removed trailing "\n" from the error string --- block/curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/curl.c b/block/curl.c index 3494c6d..359637e 100644 --- a/block/curl.c +++ b/block/curl.c @@ -538,8 +538,7 @@ static int curl_open(BlockDriverState *bs, QDict *options, int flags, return 0; out: - fprintf(stderr, "CURL: Error opening file: %s\n", state->errmsg); + error_setg(errp, "CURL: Error opening file: %s", state->errmsg); curl_easy_cleanup(state->curl); state->curl = NULL; out_noclean: -- 1.8.2.1