Skip to content
Snippets Groups Projects
Commit ee8fa78d authored by Daniel Agar's avatar Daniel Agar Committed by Lorenz Meier
Browse files

astyle src/modules/uORB

parent 88ad0fc3
No related branches found
No related tags found
No related merge requests found
......@@ -358,7 +358,7 @@ uORB::DeviceNode::ioctl(device::file_t *filp, int cmd, unsigned long arg)
if (arg == 0) {
if (sd->update_interval) {
delete(sd->update_interval);
delete (sd->update_interval);
sd->update_interval = nullptr;
}
......
......@@ -207,7 +207,7 @@ private:
#endif
};
struct SubscriberData {
~SubscriberData() { if (update_interval) { delete(update_interval); } }
~SubscriberData() { if (update_interval) { delete (update_interval); } }
unsigned generation; /**< last generation the subscriber has seen */
int flags; /**< lowest 8 bits: priority of publisher, 9. bit: update_reported bit */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment