Commit 643cd0a2 authored by Payal Kshirsagar's avatar Payal Kshirsagar Committed by Greg Kroah-Hartman

staging: comedi: use !x in place of NULL comparison

Challenge suggested by coccinelle.
Avoid NULL comparison, compare using boolean operator.
Signed-off-by: default avatarPayal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 198980e0
...@@ -282,7 +282,7 @@ void test_ni_sort_device_routes(void) ...@@ -282,7 +282,7 @@ void test_ni_sort_device_routes(void)
void test_ni_find_route_set(void) void test_ni_find_route_set(void)
{ {
unittest(ni_find_route_set(bad_dest, &DR) == NULL, unittest(!ni_find_route_set(bad_dest, &DR),
"check for nonexistent route_set\n"); "check for nonexistent route_set\n");
unittest(ni_find_route_set(dest0, &DR) == &DR.routes[0], unittest(ni_find_route_set(dest0, &DR) == &DR.routes[0],
"find first route_set\n"); "find first route_set\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment