cli: Fix typo in error message

s/neighbout/neighbour/

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Tobias Klauser 2014-06-17 14:48:24 +02:00 committed by Thomas Haller
parent f8144b11aa
commit feda705426

View file

@ -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;
}