Skip to content

Commit

Permalink
mavros: Remove extra ';'
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenfyhn committed Jun 12, 2023
1 parent abe90d7 commit 497eb5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mavros/include/mavros/mavlink_diag.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ class MavlinkDiag : public diagnostic_updater::DiagnosticTask
unsigned int last_drop_count;
std::atomic<bool> is_connected;
};
}; // namespace mavros
} // namespace mavros

2 changes: 1 addition & 1 deletion mavros/src/lib/mavlink_diag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ MavlinkDiag::MavlinkDiag(std::string name) :
diagnostic_updater::DiagnosticTask(name),
last_drop_count(0),
is_connected(false)
{ };
{ }

void MavlinkDiag::run(diagnostic_updater::DiagnosticStatusWrapper &stat)
{
Expand Down

0 comments on commit 497eb5b

Please sign in to comment.