From feda705426c4a1d24aff9d6a0b7a264df226ae10 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 17 Jun 2014 14:48:24 +0200 Subject: [PATCH] cli: Fix typo in error message s/neighbout/neighbour/ Signed-off-by: Tobias Klauser Signed-off-by: Thomas Haller --- src/lib/neigh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/neigh.c b/src/lib/neigh.c index a814bd8..4518e46 100644 --- a/src/lib/neigh.c +++ b/src/lib/neigh.c @@ -25,7 +25,7 @@ struct rtnl_neigh *nl_cli_neigh_alloc(void) neigh = rtnl_neigh_alloc(); if (!neigh) - nl_cli_fatal(ENOMEM, "Unable to allocate neighbout object"); + nl_cli_fatal(ENOMEM, "Unable to allocate neighbour object"); return neigh; }