examples/load_balancer: remove unnecessary parenthesis

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Stephen Hemminger 2017-12-14 15:32:21 -08:00 committed by Thomas Monjalon
parent 5bc53b786b
commit e6227d1eda

View File

@ -328,7 +328,7 @@ parse_arg_w(const char *arg)
errno = 0;
lcore = strtoul(p, NULL, 0);
if ((errno != 0)) {
if (errno != 0) {
return -2;
}