From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53425) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPW8Y-0005D4-BC for qemu-devel@nongnu.org; Tue, 09 Apr 2013 06:50:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPW8T-0006zf-DW for qemu-devel@nongnu.org; Tue, 09 Apr 2013 06:50:50 -0400 Received: from e28smtp04.in.ibm.com ([122.248.162.4]:53025) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPW8S-0006yo-34 for qemu-devel@nongnu.org; Tue, 09 Apr 2013 06:50:45 -0400 Received: from /spool/local by e28smtp04.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 9 Apr 2013 16:16:42 +0530 Received: from d28relay04.in.ibm.com (d28relay04.in.ibm.com [9.184.220.61]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 1FEF7125804F for ; Tue, 9 Apr 2013 16:22:01 +0530 (IST) Received: from d28av02.in.ibm.com (d28av02.in.ibm.com [9.184.220.64]) by d28relay04.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r39AoVLK14942530 for ; Tue, 9 Apr 2013 16:20:32 +0530 Received: from d28av02.in.ibm.com (loopback [127.0.0.1]) by d28av02.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r39AoYZu019007 for ; Tue, 9 Apr 2013 20:50:35 +1000 From: Dong Xu Wang Date: Tue, 9 Apr 2013 18:50:28 +0800 Message-Id: <1365504628-6027-1-git-send-email-wdongxu@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] fix compile error List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Dong Xu Wang , aliguori@us.ibm.com, wdongxu@cn.ibm.com Since 0d09e41a51aa0752b1ce525ce084f7cd210e461b virtio-9p-device.h has been renamed as virtio-9p.h, so there will be a compiling error. This patch will fix it. Signed-off-by: Dong Xu Wang --- hw/9pfs/virtio-9p-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 43f930e..f8accb7 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -16,7 +16,7 @@ #include "qemu/sockets.h" #include "virtio-9p.h" #include "fsdev/qemu-fsdev.h" -#include "virtio-9p-device.h" +#include "virtio-9p.h" #include "virtio-9p-xattr.h" #include "virtio-9p-coth.h" -- 1.7.11.7