summaryrefslogtreecommitdiffstats
path: root/src/can/can-bus-dev.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-03-13 00:04:37 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-03-16 17:14:37 +0100
commitb4f03616bbf4b69c1f644b4c58462ef9a8e7f8a9 (patch)
tree9bb27b71f98252430efb808a1c6c7aa896b0638d /src/can/can-bus-dev.hpp
parent2471f77c91357454c7e2449a70ca429d09884965 (diff)
Default value about thread state set at false.
Change-Id: I1934aa4d9a9d945a32d8e369cf0f36b1e06d3f34 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-bus-dev.hpp')
-rw-r--r--src/can/can-bus-dev.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/can/can-bus-dev.hpp b/src/can/can-bus-dev.hpp
index affcb341..c0ef8daa 100644
--- a/src/can/can-bus-dev.hpp
+++ b/src/can/can-bus-dev.hpp
@@ -42,7 +42,7 @@ private:
struct sockaddr_can txAddress_; /// < internal member using to bind to the socket
std::thread th_reading_; /// < Thread handling read the socket can device filling can_message_q_ queue of can_bus_t
- bool is_running_; /// < boolean telling whether or not reading is running or not
+ bool is_running_ = false; /// < boolean telling whether or not reading is running or not
void can_reader(can_bus_t& can_bus);
public: