From patchwork Fri Oct 19 08:54:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 192595 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 93A9B2C0093 for ; Fri, 19 Oct 2012 19:55:02 +1100 (EST) Received: from localhost ([::1]:46734 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8M8-0007tc-Nl for incoming@patchwork.ozlabs.org; Fri, 19 Oct 2012 04:55:00 -0400 Received: from eggs.gnu.org ([208.118.235.92]:54037) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Lr-0007lk-B5 for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TP8Lq-0008G4-0O for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28540) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TP8Lp-0008Fp-Or for qemu-devel@nongnu.org; Fri, 19 Oct 2012 04:54:41 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9J8sedt016426 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 19 Oct 2012 04:54:41 -0400 Received: from localhost (ovpn-112-24.ams2.redhat.com [10.36.112.24]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q9J8sdog019977; Fri, 19 Oct 2012 04:54:39 -0400 From: Stefan Hajnoczi To: Anthony Liguori Date: Fri, 19 Oct 2012 10:54:23 +0200 Message-Id: <1350636864-22263-6-git-send-email-stefanha@redhat.com> In-Reply-To: <1350636864-22263-1-git-send-email-stefanha@redhat.com> References: <1350636864-22263-1-git-send-email-stefanha@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-MIME-Autoconverted: from 8bit to quoted-printable by mx1.redhat.com id q9J8sedt016426 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 5/6] net/tap-win32: Fix compiler warning caused by missing include statement X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Stefan Weil The include file for net_init_tap was missing: net/tap-win32.c:703: warning: no previous prototype for ‘net_init_tap’ Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- net/tap-win32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/tap-win32.c b/net/tap-win32.c index f1801e2..22dad3f 100644 --- a/net/tap-win32.c +++ b/net/tap-win32.c @@ -29,6 +29,7 @@ #include "tap.h" #include "qemu-common.h" +#include "clients.h" /* net_init_tap */ #include "net.h" #include "sysemu.h" #include "qemu-error.h"