mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 23:51:28 +03:00
udev-builtin: path_id - don't pass NULL to udev_device_get_parent()
Being explicit about this makes the code easier to follow IMHO.
This commit is contained in:
parent
3b64e4d4f4
commit
28541a3d7c
@ -665,7 +665,8 @@ static int builtin_path_id(struct udev_device *dev, int argc, char *argv[], bool
|
||||
supported_parent = true;
|
||||
}
|
||||
|
||||
parent = udev_device_get_parent(parent);
|
||||
if (parent)
|
||||
parent = udev_device_get_parent(parent);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user