From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39869) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZH9fz-0005xr-Bx for qemu-devel@nongnu.org; Mon, 20 Jul 2015 07:56:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZH9fy-0005U2-L6 for qemu-devel@nongnu.org; Mon, 20 Jul 2015 07:56:07 -0400 From: Kevin Wolf Date: Mon, 20 Jul 2015 13:55:53 +0200 Message-Id: <1437393353-22695-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH] qcow2: Remove forward declaration of QCowAIOCB List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: kwolf@redhat.com, qemu-devel@nongnu.org This struct doesn't exist any more since commit 3fc48d09 in August 2011, it's about time to remove its forward declaration. Signed-off-by: Kevin Wolf --- block/qcow2.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/block/qcow2.h b/block/qcow2.h index 72e1328..46e1e80 100644 --- a/block/qcow2.h +++ b/block/qcow2.h @@ -292,8 +292,6 @@ typedef struct BDRVQcowState { char *image_backing_format; } BDRVQcowState; -struct QCowAIOCB; - typedef struct Qcow2COWRegion { /** * Offset of the COW region in bytes from the start of the first cluster -- 1.8.3.1