From patchwork Wed Oct 17 17:53:50 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 192114 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 CF7252C00A3 for ; Thu, 18 Oct 2012 04:54:07 +1100 (EST) Received: from localhost ([::1]:43235 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOXoi-0006Xf-Bx for incoming@patchwork.ozlabs.org; Wed, 17 Oct 2012 13:54:04 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOXoY-0006XV-Ls for qemu-devel@nongnu.org; Wed, 17 Oct 2012 13:53:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TOXoX-0006AQ-Iq for qemu-devel@nongnu.org; Wed, 17 Oct 2012 13:53:54 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:37872) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TOXoX-0006AJ-Ce; Wed, 17 Oct 2012 13:53:53 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 52214728003B; Wed, 17 Oct 2012 19:53:51 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CfVZzUFm8l-4; Wed, 17 Oct 2012 19:53:50 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id D74507280041; Wed, 17 Oct 2012 19:53:50 +0200 (CEST) From: Stefan Weil To: Anthony Liguori , Stefan Hajnoczi Date: Wed, 17 Oct 2012 19:53:50 +0200 Message-Id: <1350496430-14429-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Cc: qemu-trivial@nongnu.org, Stefan Weil , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] 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 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 --- 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"