fix bracket position

This commit is contained in:
Thomas Gubler
2015-01-21 17:41:56 +01:00
parent 02fdd48a47
commit b04fcad525
+1 -1
View File
@@ -287,6 +287,7 @@ public:
if (!this->_uorb_sub->updated()) {
/* Topic not updated, do not call callback */
return;
}
/* get latest data */
this->_uorb_sub->update(this->get_void_ptr());
@@ -299,7 +300,6 @@ public:
/* Call callback which performs actions based on this data */
_cbf(Subscriber<T>::get());
}
};