From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH] examples/vhost: fix a typo Date: Mon, 14 Jan 2019 16:47:47 +0200 Message-ID: <1547477267-8131-1-git-send-email-ramirose@gmail.com> Cc: maxime.coquelin@redhat.com, huawei.xie@intel.com, tiwei.bie@intel.com, Rami Rosen To: dev@dpdk.org Return-path: Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 002095A6A for ; Mon, 14 Jan 2019 15:47:55 +0100 (CET) Received: by mail-wm1-f67.google.com with SMTP id y139so9117555wmc.5 for ; Mon, 14 Jan 2019 06:47:55 -0800 (PST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This minor patch fixes a typo in examples/vhost/main.c. Fixes: d19533e86f1d ("examples/vhost: copy old vhost example") Signed-off-by: Rami Rosen --- examples/vhost/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c index dc9ea10..c4bdd3c 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -1220,7 +1220,7 @@ static void virtio_tx_offload(struct rte_mbuf *m) /* * A new device is added to a data core. First the device is added to the main linked list - * and the allocated to a specific data core. + * and then allocated to a specific data core. */ static int new_device(int vid) -- 1.8.3.1