From c54a5d14c001d544a72f3cd27553036e0649f3b1 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Sun, 12 Mar 2017 23:26:25 +0100 Subject: Fix: wrong location to make the increment because we use the device after so... This was total crap ! Change-Id: I9bb43c3f75c613a5927f342b3c574871c0eb65bb Signed-off-by: Romain Forlot --- src/can/can-bus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/can/can-bus.cpp b/src/can/can-bus.cpp index 8edf5ba..d2b51bf 100644 --- a/src/can/can-bus.cpp +++ b/src/can/can-bus.cpp @@ -189,13 +189,13 @@ int can_bus_t::init_can_dev() can_devices_.push_back(std::make_shared(device, i)); if (can_devices_[i]->open() == 0) { - i++; DEBUG(binder_interface, "Start reading thread"); NOTICE(binder_interface, "%s device opened and reading", device.c_str()); can_devices_[i]->start_reading(*this); } else ERROR(binder_interface, "Can't open device %s", device.c_str()); + i++; } NOTICE(binder_interface, "Initialized %d/%d can bus device(s)", i, t); -- cgit 1.2.3-korg