summaryrefslogtreecommitdiff
path: root/src/libudev
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2013-09-13 14:12:54 +0200
committerHarald Hoyer <harald@redhat.com>2013-09-13 15:36:08 +0200
commit6faa3dcbb8c2c9d89b23a39ca9be258c453255d9 (patch)
tree1af2868bb55bb40c7a5a0a3cb7ceec243886ec01 /src/libudev
parent90060fa6605446bef7078867423b691e4effa575 (diff)
libudev: fix move_later comparison
At the beginning move_later is set to -1, but it is set to different value only if expression !move_later is true.
Diffstat (limited to 'src/libudev')
-rw-r--r--src/libudev/libudev-enumerate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libudev/libudev-enumerate.c b/src/libudev/libudev-enumerate.c
index bc1e37d341..8146f27e4f 100644
--- a/src/libudev/libudev-enumerate.c
+++ b/src/libudev/libudev-enumerate.c
@@ -300,7 +300,7 @@ _public_ struct udev_list_entry *udev_enumerate_get_list_entry(struct udev_enume
/* skip to be delayed devices, and move the to
* the point where the prefix changes. We can
* only move one item at a time. */
- if (!move_later) {
+ if (move_later == -1) {
move_later_prefix = devices_delay_later(udev_enumerate->udev, entry->syspath);
if (move_later_prefix > 0) {