From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: [PATCH] qemu-kvm: make kvm_create_pit static Date: Mon, 27 Apr 2009 11:07:36 +0300 Message-ID: <20090427080736.GA30244@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: kvm@vger.kernel.org To: avi@redhat.com Return-path: Received: from mx2.redhat.com ([66.187.237.31]:51840 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754233AbZD0IIg (ORCPT ); Mon, 27 Apr 2009 04:08:36 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3R88bXv013022 for ; Mon, 27 Apr 2009 04:08:37 -0400 Content-Disposition: inline Sender: kvm-owner@vger.kernel.org List-ID: libkvm-x86.c:55: warning: no previous prototype for =E2=80=98kvm_create= _pit=E2=80=99 Signed-off-by: Michael S. Tsirkin --- kvm/libkvm/libkvm-x86.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kvm/libkvm/libkvm-x86.c b/kvm/libkvm/libkvm-x86.c index 2fc4fce..df8cc81 100644 --- a/kvm/libkvm/libkvm-x86.c +++ b/kvm/libkvm/libkvm-x86.c @@ -52,7 +52,7 @@ static int kvm_init_tss(kvm_context_t kvm) return 0; } =20 -int kvm_create_pit(kvm_context_t kvm) +static int kvm_create_pit(kvm_context_t kvm) { #ifdef KVM_CAP_PIT int r; --=20 1.6.0.6