From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmQst-0000NZ-Dk for qemu-devel@nongnu.org; Mon, 19 May 2014 12:58:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WmQsk-0002P2-EF for qemu-devel@nongnu.org; Mon, 19 May 2014 12:57:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmQsk-0002Ov-7b for qemu-devel@nongnu.org; Mon, 19 May 2014 12:57:46 -0400 From: Markus Armbruster Date: Mon, 19 May 2014 18:57:38 +0200 Message-Id: <1400518658-2515-6-git-send-email-armbru@redhat.com> In-Reply-To: <1400518658-2515-1-git-send-email-armbru@redhat.com> References: <1400518658-2515-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH v2 5/5] error: error_is_set() is finally unused; remove List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, kraxel@redhat.com, aliguori@amazon.com Signed-off-by: Markus Armbruster --- include/qapi/error.h | 6 ------ util/error.c | 5 ----- 2 files changed, 11 deletions(-) diff --git a/include/qapi/error.h b/include/qapi/error.h index 7995801..d712089 100644 --- a/include/qapi/error.h +++ b/include/qapi/error.h @@ -67,12 +67,6 @@ void error_set_win32(Error **errp, int win32_err, ErrorClass err_class, */ void error_setg_file_open(Error **errp, int os_errno, const char *filename); -/** - * Returns true if an indirect pointer to an error is pointing to a valid - * error object. - */ -bool error_is_set(Error **errp); - /* * Get the error class of an error object. */ diff --git a/util/error.c b/util/error.c index 66245cc..2ace0d8 100644 --- a/util/error.c +++ b/util/error.c @@ -142,11 +142,6 @@ Error *error_copy(const Error *err) return err_new; } -bool error_is_set(Error **errp) -{ - return (errp && *errp); -} - ErrorClass error_get_class(const Error *err) { return err->err_class; -- 1.9.0