mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 02:02:28 +09:00
staging: comedi: use !x in place of NULL comparison
Challenge suggested by coccinelle. Avoid NULL comparison, compare using boolean operator. Signed-off-by: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
198980e079
commit
643cd0a25d
@@ -282,7 +282,7 @@ void test_ni_sort_device_routes(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");
|
||||
unittest(ni_find_route_set(dest0, &DR) == &DR.routes[0],
|
||||
"find first route_set\n");
|
||||
|
||||
Reference in New Issue
Block a user