From: Romain Forlot Date: Sun, 12 Mar 2017 22:26:25 +0000 (+0100) Subject: Fix: wrong location to make the increment because we use X-Git-Tag: 5.0.2~471 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=c54a5d14c001d544a72f3cd27553036e0649f3b1;p=apps%2Fagl-service-can-low-level.git 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 --- diff --git a/src/can/can-bus.cpp b/src/can/can-bus.cpp index 8edf5bac..d2b51bf2 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);